pub struct RootArgumentBinding {
pub name: String,
pub type_ref: TypeReference,
pub value_canonical_json: String,
}Expand description
Canonical binding for one argument supplied to an optic root field.
Fields§
§name: StringRoot argument name.
type_ref: TypeReferenceSchema-declared argument type.
value_canonical_json: StringCanonical JSON representation of the supplied GraphQL input value.
Trait Implementations§
Source§impl Clone for RootArgumentBinding
impl Clone for RootArgumentBinding
Source§fn clone(&self) -> RootArgumentBinding
fn clone(&self) -> RootArgumentBinding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RootArgumentBinding
impl Debug for RootArgumentBinding
Source§impl<'de> Deserialize<'de> for RootArgumentBinding
impl<'de> Deserialize<'de> for RootArgumentBinding
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
Source§impl PartialEq for RootArgumentBinding
impl PartialEq for RootArgumentBinding
Source§fn eq(&self, other: &RootArgumentBinding) -> bool
fn eq(&self, other: &RootArgumentBinding) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RootArgumentBinding
impl Serialize for RootArgumentBinding
impl StructuralPartialEq for RootArgumentBinding
Auto Trait Implementations§
impl Freeze for RootArgumentBinding
impl RefUnwindSafe for RootArgumentBinding
impl Send for RootArgumentBinding
impl Sync for RootArgumentBinding
impl Unpin for RootArgumentBinding
impl UnsafeUnpin for RootArgumentBinding
impl UnwindSafe for RootArgumentBinding
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