pub struct ApiJsonSchema {
pub name: Option<String>,
pub schema: Value,
pub strict: Option<bool>,
}Fields§
§name: Option<String>§schema: Value§strict: Option<bool>Trait Implementations§
Source§impl Clone for ApiJsonSchema
impl Clone for ApiJsonSchema
Source§fn clone(&self) -> ApiJsonSchema
fn clone(&self) -> ApiJsonSchema
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ApiJsonSchema
impl Debug for ApiJsonSchema
Source§impl<'de> Deserialize<'de> for ApiJsonSchema
impl<'de> Deserialize<'de> for ApiJsonSchema
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 for ApiJsonSchema
impl PartialEq for ApiJsonSchema
Source§impl Serialize for ApiJsonSchema
impl Serialize for ApiJsonSchema
impl StructuralPartialEq for ApiJsonSchema
Auto Trait Implementations§
impl Freeze for ApiJsonSchema
impl RefUnwindSafe for ApiJsonSchema
impl Send for ApiJsonSchema
impl Sync for ApiJsonSchema
impl Unpin for ApiJsonSchema
impl UnsafeUnpin for ApiJsonSchema
impl UnwindSafe for ApiJsonSchema
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