[][src]Struct rocket_okapi::settings::OpenApiSettings

pub struct OpenApiSettings {
    pub schema_settings: SchemaSettings,
    pub json_path: String,
}

Settings which are used to customize the behavior of the OpenApiGenerator.

Fields

schema_settings: SchemaSettings

Settings to customize how JSON Schemas are generated.

json_path: String

The path to the json file that contains the API specification. Then default is openapi.json.

Implementations

impl OpenApiSettings[src]

pub fn new() -> Self[src]

Create a new instance of OpenApiSettings. Equivalent to calling Default::default.

Trait Implementations

impl Clone for OpenApiSettings[src]

impl Debug for OpenApiSettings[src]

impl Default for OpenApiSettings[src]

Auto Trait Implementations

impl !RefUnwindSafe for OpenApiSettings

impl !Send for OpenApiSettings

impl !Sync for OpenApiSettings

impl Unpin for OpenApiSettings

impl !UnwindSafe for OpenApiSettings

Blanket Implementations

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

impl<T, I> AsResult<T, I> for T where
    I: Input, 

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

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

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

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

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

impl<T> IntoCollection<T> for T

impl<T> IntoSql for T

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<T> Typeable for T where
    T: Any

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