pub enum SchemaType {
Type(Type),
Array(Vec<Type>),
AnyValue,
}Expand description
Variants§
Type(Type)
Single type known from OpenAPI spec 3.0
Array(Vec<Type>)
Multiple types rendered as slice
AnyValue
Type that is considered typeless. AnyValue will omit the type definition from the schema
making it to accept any type possible.
Implementations§
Source§impl SchemaType
impl SchemaType
Sourcepub fn new(type: Type) -> SchemaType
pub fn new(type: Type) -> SchemaType
Instantiate new SchemaType of given Type
Method accepts one argument type to create SchemaType for.
§Examples
Create string SchemaType
let ty = SchemaType::new(Type::String);Sourcepub fn any() -> SchemaType
pub fn any() -> SchemaType
This is same as calling SchemaType::AnyValue but in a function form () -> SchemaType
allowing it to be used as argument for serde’s default = "...".
Sourcepub fn is_any_value(&self) -> bool
pub fn is_any_value(&self) -> bool
Check whether this SchemaType is any value (typeless) returning true on any value
schema type.
Trait Implementations§
Source§impl Clone for SchemaType
impl Clone for SchemaType
Source§fn clone(&self) -> SchemaType
fn clone(&self) -> SchemaType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for SchemaType
impl Default for SchemaType
Source§fn default() -> SchemaType
fn default() -> SchemaType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SchemaType
impl<'de> Deserialize<'de> for SchemaType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SchemaType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SchemaType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<Type> for SchemaType
impl From<Type> for SchemaType
Source§fn from(value: Type) -> SchemaType
fn from(value: Type) -> SchemaType
Converts to this type from the input type.
Source§impl FromIterator<Type> for SchemaType
impl FromIterator<Type> for SchemaType
Source§fn from_iter<T>(iter: T) -> SchemaTypewhere
T: IntoIterator<Item = Type>,
fn from_iter<T>(iter: T) -> SchemaTypewhere
T: IntoIterator<Item = Type>,
Creates a value from an iterator. Read more
Source§impl PartialEq for SchemaType
impl PartialEq for SchemaType
Source§impl Serialize for SchemaType
impl Serialize for SchemaType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for SchemaType
impl StructuralPartialEq for SchemaType
Auto Trait Implementations§
impl Freeze for SchemaType
impl RefUnwindSafe for SchemaType
impl Send for SchemaType
impl Sync for SchemaType
impl Unpin for SchemaType
impl UnwindSafe for SchemaType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.