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§
source§impl Clone for ServerVariable
impl Clone for ServerVariable
source§fn clone(&self) -> ServerVariable
fn clone(&self) -> ServerVariable
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ServerVariable
impl Debug for ServerVariable
source§impl Default for ServerVariable
impl Default for ServerVariable
source§fn default() -> ServerVariable
fn default() -> ServerVariable
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ServerVariable
impl<'de> Deserialize<'de> for ServerVariable
source§fn 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
source§impl PartialEq<ServerVariable> for ServerVariable
impl PartialEq<ServerVariable> for ServerVariable
source§fn 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 ==
.