pub struct DocDataBigInt {
pub value: u64,
}
Expand description
Represents a large integer value for document data, particularly useful for interacting with
languages or environments that support large numeric types, such as the bigint
in JavaScript.
§Fields
value
: Au64
integer representing the large numeric value encapsulated by this struct.
Fields§
§value: u64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DocDataBigInt
impl<'de> Deserialize<'de> for DocDataBigInt
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 Display for DocDataBigInt
impl Display for DocDataBigInt
Auto Trait Implementations§
impl Freeze for DocDataBigInt
impl RefUnwindSafe for DocDataBigInt
impl Send for DocDataBigInt
impl Sync for DocDataBigInt
impl Unpin for DocDataBigInt
impl UnwindSafe for DocDataBigInt
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