pub enum OpenapiVisitor {
Show 17 variants Empty, Unit { name: Option<String>, description: Option<String>, }, Any, Bool, Int { byte: Option<u32>, minimum: Option<i64>, }, Number { byte: Option<u32>, }, Char, String, Uuid, Date, DateTime, Binary, Option(Box<OpenapiVisitor>), Enum { name: Option<String>, description: Option<String>, variants: Vec<Option<String>>, }, Array { items: Box<OpenapiVisitor>, len: Option<usize>, unique_items: bool, }, Object(Object), Alternatives(Alternatives),
}

Variants§

§

Empty

§

Unit

Fields

§description: Option<String>
§

Any

§

Bool

§

Int

Fields

§byte: Option<u32>
§minimum: Option<i64>
§

Number

Fields

§byte: Option<u32>
§

Char

§

String

§

Uuid

§

Date

§

DateTime

§

Binary

§

Option(Box<OpenapiVisitor>)

§

Enum

Fields

§description: Option<String>
§variants: Vec<Option<String>>
§

Array

Fields

§unique_items: bool
§

Object(Object)

§

Alternatives(Alternatives)

Implementations§

source§

impl OpenapiVisitor

source

pub const fn new() -> Self

source

pub fn into_schema(self) -> Option<OpenapiSchema>

Trait Implementations§

source§

impl Debug for OpenapiVisitor

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Visitor for OpenapiVisitor

§

type OptionVisitor = OpenapiVisitor

§

type ArrayVisitor = OpenapiVisitor

§

type ObjectVisitor = Object

§

type AlternativesVisitor = Alternatives

source§

fn visit_unit_struct( &mut self, name: Option<String>, description: Option<String> )

source§

fn visit_any(&mut self)

source§

fn visit_bool(&mut self)

source§

fn visit_int(&mut self, byte: Option<u32>, minimum: Option<i64>)

source§

fn visit_number(&mut self, byte: Option<u32>)

source§

fn visit_char(&mut self)

source§

fn visit_string(&mut self)

source§

fn visit_uuid(&mut self)

source§

fn visit_date(&mut self)

source§

fn visit_datetime(&mut self)

source§

fn visit_binary(&mut self)

source§

fn visit_option(&mut self) -> &mut Self

source§

fn visit_enum<I>( &mut self, name: Option<String>, description: Option<String>, variants: I )where I: IntoIterator<Item = String>,

source§

fn visit_array(&mut self, len: Option<usize>, unique_items: bool) -> &mut Self

source§

fn visit_object(&mut self) -> &mut Object

source§

fn visit_alternatives(&mut self) -> &mut Alternatives

source§

fn visit_unit(&mut self)

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.