sui_graphql_rpc/types/
uint53.rsuse std::fmt;
use async_graphql::*;
use sui_types::{base_types::SequenceNumber, sui_serde::BigInt};
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd)]
pub(crate) struct UInt53(u64);
#[Scalar(name = "UInt53")]
impl ScalarType for UInt53 {
fn parse(value: Value) -> InputValueResult<Self> {
let Value::Number(n) = value else {
return Err(InputValueError::expected_type(value));
};
let Some(n) = n.as_u64() else {
return Err(InputValueError::custom("Expected an unsigned integer."));
};
Ok(UInt53(n))
}
fn to_value(&self) -> Value {
Value::Number(self.0.into())
}
}
impl fmt::Display for UInt53 {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.0)
}
}
impl From<u64> for UInt53 {
fn from(value: u64) -> Self {
Self(value)
}
}
impl From<UInt53> for SequenceNumber {
fn from(value: UInt53) -> Self {
SequenceNumber::from(value.0)
}
}
impl From<UInt53> for BigInt<u64> {
fn from(value: UInt53) -> Self {
BigInt::from(value.0)
}
}
impl From<UInt53> for u64 {
fn from(value: UInt53) -> Self {
value.0
}
}
impl From<UInt53> for i64 {
fn from(value: UInt53) -> Self {
value.0 as i64
}
}