pub struct LexObject {
pub description: Option<String>,
pub required: Option<Vec<String>>,
pub nullable: Option<Vec<String>>,
pub properties: HashMap<String, LexObjectProperty>,
}Fields§
§description: Option<String>§required: Option<Vec<String>>§nullable: Option<Vec<String>>§properties: HashMap<String, LexObjectProperty>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LexObject
impl<'de> Deserialize<'de> for LexObject
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
impl Eq for LexObject
impl StructuralPartialEq for LexObject
Auto Trait Implementations§
impl Freeze for LexObject
impl RefUnwindSafe for LexObject
impl Send for LexObject
impl Sync for LexObject
impl Unpin for LexObject
impl UnwindSafe for LexObject
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.