Enum salvo_oapi::schema::SchemaType
source · pub enum SchemaType {
Object,
String,
Integer,
Number,
Boolean,
Array,
}Expand description
Represents data type of Schema.
Variants§
Object
Used with Object. Objects always have
schema_type SchemaType::Object.
String
Indicates string type of content. Used with Object on a string
field.
Integer
Indicates integer type of content. Used with Object on a number
field.
Number
Indicates floating point number type of content. Used with
Object on a number field.
Boolean
Indicates boolean type of content. Used with Object on
a bool field.
Array
Used with Array. Indicates array type of content.
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 Debug for SchemaType
impl Debug for SchemaType
source§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 PartialEq<SchemaType> for SchemaType
impl PartialEq<SchemaType> for SchemaType
source§fn eq(&self, other: &SchemaType) -> bool
fn eq(&self, other: &SchemaType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for SchemaType
impl Serialize for SchemaType
impl Eq for SchemaType
impl StructuralEq for SchemaType
impl StructuralPartialEq for SchemaType
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.