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