#[repr(u8)]pub enum Int64Representation {
Number = 0,
BigInt = 1,
}Variants§
Number = 0
Use numbers to represent 64 bit integers.
BigInt = 1
Use BigInts to represent 64 bit integers.
Trait Implementations§
Source§impl Clone for Int64Representation
impl Clone for Int64Representation
Source§fn clone(&self) -> Int64Representation
fn clone(&self) -> Int64Representation
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 moreimpl Copy for Int64Representation
Auto Trait Implementations§
impl Freeze for Int64Representation
impl RefUnwindSafe for Int64Representation
impl Send for Int64Representation
impl Sync for Int64Representation
impl Unpin for Int64Representation
impl UnsafeUnpin for Int64Representation
impl UnwindSafe for Int64Representation
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