pub struct UInt64Scalar(pub u64);
Tuple Fields§
§0: u64
Trait Implementations§
Source§impl Clone for UInt64Scalar
impl Clone for UInt64Scalar
Source§fn clone(&self) -> UInt64Scalar
fn clone(&self) -> UInt64Scalar
Returns a duplicate of the value. Read more
1.0.0 · 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 UInt64Scalar
impl Debug for UInt64Scalar
Source§impl InputType for UInt64Scalar
impl InputType for UInt64Scalar
Source§impl OutputType for UInt64Scalar
impl OutputType for UInt64Scalar
Source§fn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
_: &'life1 ContextSelectionSet<'life2>,
_field: &'life3 Positioned<Field>,
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
fn resolve<'life0, 'life1, 'life2, 'life3, 'async_trait>(
&'life0 self,
_: &'life1 ContextSelectionSet<'life2>,
_field: &'life3 Positioned<Field>,
) -> Pin<Box<dyn Future<Output = ServerResult<Value>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait,
'life3: 'async_trait,
Resolve an output value to
async_graphql::Value
.Source§impl PartialEq for UInt64Scalar
impl PartialEq for UInt64Scalar
Source§impl Scalar for UInt64Scalar
impl Scalar for UInt64Scalar
Source§impl ScalarType for UInt64Scalar
impl ScalarType for UInt64Scalar
Source§impl SerializableArgument for UInt64Scalar
impl SerializableArgument for UInt64Scalar
Source§impl Type for UInt64Scalar
impl Type for UInt64Scalar
Source§fn create_type_info(registry: &mut Registry) -> String
fn create_type_info(registry: &mut Registry) -> String
Create type information in the registry and return qualified typename.
Source§fn qualified_type_name() -> String
fn qualified_type_name() -> String
Qualified typename.
impl Copy for UInt64Scalar
impl Eq for UInt64Scalar
impl StructuralPartialEq for UInt64Scalar
Auto Trait Implementations§
impl Freeze for UInt64Scalar
impl RefUnwindSafe for UInt64Scalar
impl Send for UInt64Scalar
impl Sync for UInt64Scalar
impl Unpin for UInt64Scalar
impl UnwindSafe for UInt64Scalar
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§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.