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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ServerVariable) -> bool
fn ne(&self, other: &ServerVariable) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more