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