pub enum IntrospectionInputTypeRef<'a> {
List {
of_type: Box<IntrospectionInputTypeRef<'a>>,
},
NonNull {
of_type: Box<IntrospectionInputTypeRef<'a>>,
},
ScalarType {
name: &'a str,
},
EnumType {
name: &'a str,
},
InputObjectType {
name: &'a str,
},
}
Variants§
List
Fields
§
of_type: Box<IntrospectionInputTypeRef<'a>>
NonNull
Fields
§
of_type: Box<IntrospectionInputTypeRef<'a>>
ScalarType
EnumType
InputObjectType
Trait Implementations§
Source§impl<'a> Debug for IntrospectionInputTypeRef<'a>
impl<'a> Debug for IntrospectionInputTypeRef<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInputTypeRef<'a>
impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInputTypeRef<'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 IntrospectionInputTypeRef<'a>
impl<'a> RefUnwindSafe for IntrospectionInputTypeRef<'a>
impl<'a> Send for IntrospectionInputTypeRef<'a>
impl<'a> Sync for IntrospectionInputTypeRef<'a>
impl<'a> Unpin for IntrospectionInputTypeRef<'a>
impl<'a> UnwindSafe for IntrospectionInputTypeRef<'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