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
sourceimpl Debug for IntrospectionEnumValue
impl Debug for IntrospectionEnumValue
sourceimpl<'de> Deserialize<'de> for IntrospectionEnumValue
impl<'de> Deserialize<'de> for IntrospectionEnumValue
sourcefn 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
sourceimpl Serialize for IntrospectionEnumValue
impl Serialize for IntrospectionEnumValue
Auto Trait Implementations
impl RefUnwindSafe for IntrospectionEnumValue
impl Send for IntrospectionEnumValue
impl Sync for IntrospectionEnumValue
impl Unpin for IntrospectionEnumValue
impl UnwindSafe for IntrospectionEnumValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more