pub struct IntrospectionInterfaceType<'a> {
pub name: &'a str,
pub description: Option<String>,
pub implementation: IntrospectionObjectImplementation<'a>,
pub possible_types: IntrospectionPossibleTypes<'a>,
}
Fields§
§name: &'a str
§description: Option<String>
§implementation: IntrospectionObjectImplementation<'a>
§possible_types: IntrospectionPossibleTypes<'a>
Trait Implementations§
Source§impl<'a> Debug for IntrospectionInterfaceType<'a>
impl<'a> Debug for IntrospectionInterfaceType<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInterfaceType<'a>
impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInterfaceType<'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
Source§impl<'a> From<IntrospectionInterfaceType<'a>> for IntrospectionObjectImplementation<'a>
impl<'a> From<IntrospectionInterfaceType<'a>> for IntrospectionObjectImplementation<'a>
Source§fn from(obj: IntrospectionInterfaceType<'a>) -> Self
fn from(obj: IntrospectionInterfaceType<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> From<IntrospectionInterfaceType<'a>> for IntrospectionPossibleTypes<'a>
impl<'a> From<IntrospectionInterfaceType<'a>> for IntrospectionPossibleTypes<'a>
Source§fn from(obj: IntrospectionInterfaceType<'a>) -> Self
fn from(obj: IntrospectionInterfaceType<'a>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for IntrospectionInterfaceType<'a>
impl<'a> RefUnwindSafe for IntrospectionInterfaceType<'a>
impl<'a> Send for IntrospectionInterfaceType<'a>
impl<'a> Sync for IntrospectionInterfaceType<'a>
impl<'a> Unpin for IntrospectionInterfaceType<'a>
impl<'a> UnwindSafe for IntrospectionInterfaceType<'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