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