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) -> Self
pub fn new(type: Type) -> Self
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() -> Self
pub fn any() -> Self
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 copy 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§impl<'de> Deserialize<'de> for SchemaType
impl<'de> Deserialize<'de> for SchemaType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::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§impl FromIterator<Type> for SchemaType
impl FromIterator<Type> for SchemaType
Source§impl PartialEq for SchemaType
impl PartialEq for SchemaType
Source§impl Serialize for SchemaType
impl Serialize for SchemaType
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.