pub enum BigIntOrI64 {
Int(i64),
BigInt(BigInt),
}
Variants§
Trait Implementations§
Source§impl Clone for BigIntOrI64
impl Clone for BigIntOrI64
Source§fn clone(&self) -> BigIntOrI64
fn clone(&self) -> BigIntOrI64
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 BigIntOrI64
impl Debug for BigIntOrI64
Source§impl PartialEq for BigIntOrI64
impl PartialEq for BigIntOrI64
impl Eq for BigIntOrI64
Auto Trait Implementations§
impl Freeze for BigIntOrI64
impl RefUnwindSafe for BigIntOrI64
impl Send for BigIntOrI64
impl Sync for BigIntOrI64
impl Unpin for BigIntOrI64
impl UnwindSafe for BigIntOrI64
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