pub struct PostSecurityApiValidationBodySchema {
pub language: SchemaLanguage,
pub schema: String,
pub post_security_api_validation_body_schema_type: FluffyType,
}
Fields§
§language: SchemaLanguage
The definition format.
schema: String
The stringified API definition.
post_security_api_validation_body_schema_type: FluffyType
The definition type.
Trait Implementations§
Source§impl Clone for PostSecurityApiValidationBodySchema
impl Clone for PostSecurityApiValidationBodySchema
Source§fn clone(&self) -> PostSecurityApiValidationBodySchema
fn clone(&self) -> PostSecurityApiValidationBodySchema
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<'de> Deserialize<'de> for PostSecurityApiValidationBodySchema
impl<'de> Deserialize<'de> for PostSecurityApiValidationBodySchema
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 PostSecurityApiValidationBodySchema
impl PartialEq for PostSecurityApiValidationBodySchema
Source§fn eq(&self, other: &PostSecurityApiValidationBodySchema) -> bool
fn eq(&self, other: &PostSecurityApiValidationBodySchema) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PostSecurityApiValidationBodySchema
Auto Trait Implementations§
impl Freeze for PostSecurityApiValidationBodySchema
impl RefUnwindSafe for PostSecurityApiValidationBodySchema
impl Send for PostSecurityApiValidationBodySchema
impl Sync for PostSecurityApiValidationBodySchema
impl Unpin for PostSecurityApiValidationBodySchema
impl UnwindSafe for PostSecurityApiValidationBodySchema
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