[]Struct rweb::openapi::Server

pub struct Server {
    pub url: Cow<'static, str>,
    pub description: Cow<'static, str>,
    pub variables: BTreeMap<Cow<'static, str>, ServerVariable>,
}

Fields

url: Cow<'static, str>

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: Cow<'static, str>

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

variables: BTreeMap<Cow<'static, str>, 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

impl Debug for Server

impl Default for Server

impl<'de> Deserialize<'de> for Server

impl PartialEq<Server> for Server

impl Serialize for Server

impl StructuralPartialEq for Server

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: Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,