[][src]Struct aide::openapi::v3::definition::OpenApi

pub struct OpenApi {
    pub openapi: String,
    pub info: Info,
    pub servers: Vec<Server>,
    pub paths: Map<String, PathItem>,
    pub components: Option<Components>,
    pub security: Vec<Map<String, Vec<String>>>,
    pub tags: Vec<Tag>,
    pub external_docs: Option<ExternalDocs>,
    pub extensions: Map<String, Value>,
}

Fields

openapi: Stringinfo: Infoservers: Vec<Server>paths: Map<String, PathItem>components: Option<Components>security: Vec<Map<String, Vec<String>>>tags: Vec<Tag>external_docs: Option<ExternalDocs>extensions: Map<String, Value>

Implementations

impl OpenApi[src]

pub fn transform<T: FnOnce(Self) -> Self>(self, transform_fn: T) -> Self[src]

Allows applying transform functions in a neat way.

pub fn try_transform<T: FnOnce(Self) -> Result<Self, E>, E: Error>(
    self,
    transform_fn: T
) -> Result<Self, E>
[src]

Same as transform, however allows for fallible operations that might return an error.

Trait Implementations

impl Clone for OpenApi[src]

impl Debug for OpenApi[src]

impl Default for OpenApi[src]

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

impl JsonSchema for OpenApi[src]

impl Serialize for OpenApi[src]

Auto Trait Implementations

impl RefUnwindSafe for OpenApi

impl Send for OpenApi

impl Sync for OpenApi

impl Unpin for OpenApi

impl UnwindSafe for OpenApi

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> DynClone for T where
    T: Clone
[src]

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

impl<T> Instrument 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>,