pub struct IntrospectionInputValue {
pub name: String,
pub description: Option<String>,
pub default_value: Option<String>,
pub is_deprecated: Option<bool>,
pub deprecation_reason: Option<String>,
pub type_ref: Option<IntrospectionInputTypeRef>,
}
Fields
name: String
description: Option<String>
default_value: Option<String>
is_deprecated: Option<bool>
deprecation_reason: Option<String>
type_ref: Option<IntrospectionInputTypeRef>
Trait Implementations
sourceimpl Debug for IntrospectionInputValue
impl Debug for IntrospectionInputValue
sourceimpl<'de> Deserialize<'de> for IntrospectionInputValue
impl<'de> Deserialize<'de> for IntrospectionInputValue
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 IntrospectionInputValue
impl Serialize for IntrospectionInputValue
Auto Trait Implementations
impl RefUnwindSafe for IntrospectionInputValue
impl Send for IntrospectionInputValue
impl Sync for IntrospectionInputValue
impl Unpin for IntrospectionInputValue
impl UnwindSafe for IntrospectionInputValue
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