Struct async_graphql_parser::types::VariableDefinition
source · [−]pub struct VariableDefinition {
pub name: Positioned<Name>,
pub var_type: Positioned<Type>,
pub directives: Vec<Positioned<Directive>>,
pub default_value: Option<Positioned<ConstValue>>,
}
Expand description
A variable definition inside a list of variable definitions, for example
$name:String!
.
Fields
name: Positioned<Name>
The name of the variable, without the preceding $
.
var_type: Positioned<Type>
The type of the variable.
directives: Vec<Positioned<Directive>>
The variable’s directives.
default_value: Option<Positioned<ConstValue>>
The optional default value of the variable.
Implementations
sourceimpl VariableDefinition
impl VariableDefinition
sourcepub fn default_value(&self) -> Option<&ConstValue>
pub fn default_value(&self) -> Option<&ConstValue>
Get the default value of the variable; this is default_value
if it is
present, Value::Null
if it is nullable and None
otherwise.
Trait Implementations
sourceimpl Clone for VariableDefinition
impl Clone for VariableDefinition
sourcefn clone(&self) -> VariableDefinition
fn clone(&self) -> VariableDefinition
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for VariableDefinition
impl Debug for VariableDefinition
sourceimpl<'de> Deserialize<'de> for VariableDefinition
impl<'de> Deserialize<'de> for VariableDefinition
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 VariableDefinition
impl Serialize for VariableDefinition
Auto Trait Implementations
impl RefUnwindSafe for VariableDefinition
impl Send for VariableDefinition
impl Sync for VariableDefinition
impl Unpin for VariableDefinition
impl UnwindSafe for VariableDefinition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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