[][src]Struct openapiv3::Server

pub struct Server {
    pub url: String,
    pub description: Option<String>,
    pub variables: Option<IndexMap<String, ServerVariable>>,
}

An object representing a Server.

Fields

url: String

REQUIRED. A URL to the target host. This URL supports Server Variables and MAY be relative, to indicate that the host location is relative to the location where the OpenAPI document is being served. Variable substitutions will be made when a variable is named in {brackets}.

description: Option<String>

An optional string describing the host designated by the URL. CommonMark syntax MAY be used for rich text representation.

variables: Option<IndexMap<String, ServerVariable>>

A map between a variable name and its value. The value is used for substitution in the server's URL template.

Trait Implementations

impl Clone for Server[src]

impl Debug for Server[src]

impl Default for Server[src]

impl<'de> Deserialize<'de> for Server[src]

impl PartialEq<Server> for Server[src]

impl Serialize for Server[src]

impl StructuralPartialEq for Server[src]

Auto Trait Implementations

impl RefUnwindSafe for Server

impl Send for Server

impl Sync for Server

impl Unpin for Server

impl UnwindSafe for Server

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.