pub struct ObjectSchema {
pub fields: Vec<Field>,
pub allow_additional_fields: bool,
}Expand description
Schema for an object type with named fields.
Fields§
§fields: Vec<Field>Field definitions
allow_additional_fields: boolWhether to allow additional fields not in schema
Implementations§
Source§impl ObjectSchema
impl ObjectSchema
Sourcepub fn allow_additional(self) -> Self
pub fn allow_additional(self) -> Self
Allow additional fields beyond those defined in the schema.
Sourcepub fn all_field_names(&self) -> Vec<String>
pub fn all_field_names(&self) -> Vec<String>
Get all field names (including aliases).
Trait Implementations§
Source§impl Clone for ObjectSchema
impl Clone for ObjectSchema
Source§fn clone(&self) -> ObjectSchema
fn clone(&self) -> ObjectSchema
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 Debug for ObjectSchema
impl Debug for ObjectSchema
Source§impl<'de> Deserialize<'de> for ObjectSchema
impl<'de> Deserialize<'de> for ObjectSchema
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 ObjectSchema
impl PartialEq for ObjectSchema
Source§impl Serialize for ObjectSchema
impl Serialize for ObjectSchema
impl StructuralPartialEq for ObjectSchema
Auto Trait Implementations§
impl Freeze for ObjectSchema
impl RefUnwindSafe for ObjectSchema
impl Send for ObjectSchema
impl Sync for ObjectSchema
impl Unpin for ObjectSchema
impl UnsafeUnpin for ObjectSchema
impl UnwindSafe for ObjectSchema
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