pub struct IntrospectionInputValue<'a> {
pub name: &'a str,
pub description: Option<&'a str>,
pub default_value: Option<String>,
pub of_type: IntrospectionInputTypeRef<'a>,
pub deprecation: IntrospectionDeprecation<'a>,
}
Fields§
§name: &'a str
§description: Option<&'a str>
§default_value: Option<String>
§of_type: IntrospectionInputTypeRef<'a>
§deprecation: IntrospectionDeprecation<'a>
Trait Implementations§
Source§impl<'a> Debug for IntrospectionInputValue<'a>
impl<'a> Debug for IntrospectionInputValue<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInputValue<'a>
impl<'de: 'a, 'a> Deserialize<'de> for IntrospectionInputValue<'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 IntrospectionInputValue<'a>
impl<'a> RefUnwindSafe for IntrospectionInputValue<'a>
impl<'a> Send for IntrospectionInputValue<'a>
impl<'a> Sync for IntrospectionInputValue<'a>
impl<'a> Unpin for IntrospectionInputValue<'a>
impl<'a> UnwindSafe for IntrospectionInputValue<'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