Struct openapiv3::ServerVariable
source · [−]pub struct ServerVariable {
pub enumeration: Vec<String>,
pub default: String,
pub description: Option<String>,
pub extensions: IndexMap<String, Value>,
}
Expand description
An object representing a Server Variable for server URL template substitution.
Fields
enumeration: Vec<String>
An enumeration of string values to be used if the substitution options are from a limited set.
default: String
REQUIRED. The default value to use for substitution, and to send, if an alternate value is not supplied. Unlike the Schema Object’s default, this value MUST be provided by the consumer.
description: Option<String>
An optional description for the server variable. CommonMark syntax MAY be used for rich text representation.
extensions: IndexMap<String, Value>
Inline extensions to this object.
Trait Implementations
sourceimpl Clone for ServerVariable
impl Clone for ServerVariable
sourcefn clone(&self) -> ServerVariable
fn clone(&self) -> ServerVariable
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ServerVariable
impl Debug for ServerVariable
sourceimpl Default for ServerVariable
impl Default for ServerVariable
sourcefn default() -> ServerVariable
fn default() -> ServerVariable
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for ServerVariable
impl<'de> Deserialize<'de> for ServerVariable
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<ServerVariable> for ServerVariable
impl PartialEq<ServerVariable> for ServerVariable
sourcefn eq(&self, other: &ServerVariable) -> bool
fn eq(&self, other: &ServerVariable) -> bool
sourceimpl Serialize for ServerVariable
impl Serialize for ServerVariable
impl StructuralPartialEq for ServerVariable
Auto Trait Implementations
impl RefUnwindSafe for ServerVariable
impl Send for ServerVariable
impl Sync for ServerVariable
impl Unpin for ServerVariable
impl UnwindSafe for ServerVariable
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more