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