pub struct IntrospectionInputObjectType<'a> {
pub name: &'a str,
pub description: Option<&'a str>,
pub input_fields: Vec<IntrospectionInputValue<'a>>,
}
Fields§
§name: &'a str
§description: Option<&'a str>
§input_fields: Vec<IntrospectionInputValue<'a>>
Trait Implementations§
Source§impl<'a> Debug for IntrospectionInputObjectType<'a>
impl<'a> Debug for IntrospectionInputObjectType<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInputObjectType<'a>
impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInputObjectType<'a>
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<'a> Freeze for IntrospectionInputObjectType<'a>
impl<'a> RefUnwindSafe for IntrospectionInputObjectType<'a>
impl<'a> Send for IntrospectionInputObjectType<'a>
impl<'a> Sync for IntrospectionInputObjectType<'a>
impl<'a> Unpin for IntrospectionInputObjectType<'a>
impl<'a> UnwindSafe for IntrospectionInputObjectType<'a>
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