pub enum Value {
Variable(Name),
Null,
Number(Number),
String(String),
Boolean(bool),
Binary(Bytes),
Enum(Name),
List(Vec<Value>),
Object(IndexMap<Name, Value>),
}
Expand description
A GraphQL value, for example 1
, $name
or "Hello World!"
. This is
ConstValue
with variables.
It can be serialized and deserialized. Enums will be converted to strings.
Attempting to serialize Upload
or Variable
will fail, and Enum
,
Upload
and Variable
cannot be deserialized.
Variants§
Variable(Name)
A variable, without the $
.
Null
null
.
Number(Number)
A number.
String(String)
A string.
Boolean(bool)
A boolean.
Binary(Bytes)
A binary.
Enum(Name)
An enum. These are typically in SCREAMING_SNAKE_CASE
.
List(Vec<Value>)
A list of values.
Object(IndexMap<Name, Value>)
An object. This is a map of keys to values.
Implementations§
source§impl Value
impl Value
sourcepub fn into_const_with<E>(
self,
f: impl FnMut(Name) -> Result<ConstValue, E>,
) -> Result<ConstValue, E>
pub fn into_const_with<E>( self, f: impl FnMut(Name) -> Result<ConstValue, E>, ) -> Result<ConstValue, E>
Attempt to convert the value into a const value by using a function to get a variable.
sourcepub fn into_const(self) -> Option<ConstValue>
pub fn into_const(self) -> Option<ConstValue>
Attempt to convert the value into a const value.
Will fail if the value contains variables.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Value
impl<'de> Deserialize<'de> for Value
source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl From<ConstValue> for Value
impl From<ConstValue> for Value
source§fn from(value: ConstValue) -> Self
fn from(value: ConstValue) -> Self
Converts to this type from the input type.
impl Eq for Value
impl StructuralPartialEq for Value
Auto Trait Implementations§
impl !Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.