pub struct IntValue<'a> {
pub value: &'a str,
}
Expand description
AST Node of an integer value.
Integers in GraphQL are limited to 32-bit signed, non-fractional values.
Fields§
§value: &'a str
Trait Implementations§
Source§impl<'a> ValueFromNode<'a> for IntValue<'a>
impl<'a> ValueFromNode<'a> for IntValue<'a>
impl<'a> Copy for IntValue<'a>
impl<'a> Eq for IntValue<'a>
impl<'a> StructuralPartialEq for IntValue<'a>
Auto Trait Implementations§
impl<'a> Freeze for IntValue<'a>
impl<'a> RefUnwindSafe for IntValue<'a>
impl<'a> Send for IntValue<'a>
impl<'a> Sync for IntValue<'a>
impl<'a> Unpin for IntValue<'a>
impl<'a> UnwindSafe for IntValue<'a>
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