pub struct SchemaArg {
pub name: String,
pub comment: Option<String>,
pub is_nullable: bool,
pub is_required: bool,
pub input_types: Vec<InputTypeRef>,
pub deprecation: Option<Deprecation>,
}Fields§
§name: String§comment: Option<String>§is_nullable: bool§is_required: bool§input_types: Vec<InputTypeRef>§deprecation: Option<Deprecation>Trait Implementations§
Source§impl<'de> Deserialize<'de> for SchemaArg
impl<'de> Deserialize<'de> for SchemaArg
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
Auto Trait Implementations§
impl Freeze for SchemaArg
impl RefUnwindSafe for SchemaArg
impl Send for SchemaArg
impl Sync for SchemaArg
impl Unpin for SchemaArg
impl UnwindSafe for SchemaArg
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