pub struct Int64Scalar(pub i64);
Tuple Fields§
§0: i64
Trait Implementations§
Source§impl Clone for Int64Scalar
impl Clone for Int64Scalar
Source§fn clone(&self) -> Int64Scalar
fn clone(&self) -> Int64Scalar
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 Int64Scalar
impl Debug for Int64Scalar
Source§impl InputType for Int64Scalar
impl InputType for Int64Scalar
Source§impl OutputType for Int64Scalar
impl OutputType for Int64Scalar
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 Int64Scalar
impl PartialEq for Int64Scalar
Source§impl Scalar for Int64Scalar
impl Scalar for Int64Scalar
Source§impl ScalarType for Int64Scalar
impl ScalarType for Int64Scalar
Source§impl SerializableArgument for Int64Scalar
impl SerializableArgument for Int64Scalar
Source§impl Type for Int64Scalar
impl Type for Int64Scalar
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 Int64Scalar
impl Eq for Int64Scalar
impl StructuralPartialEq for Int64Scalar
Auto Trait Implementations§
impl Freeze for Int64Scalar
impl RefUnwindSafe for Int64Scalar
impl Send for Int64Scalar
impl Sync for Int64Scalar
impl Unpin for Int64Scalar
impl UnwindSafe for Int64Scalar
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.