pub enum CborDetIntKind {
UInt64,
NegInt64,
}
Expand description
The kind of 64-bit integer: unsigned (to represent non-negative values), or negative (to represent negative values in two’s complement.)
Variants§
Trait Implementations§
Source§impl Clone for CborDetIntKind
impl Clone for CborDetIntKind
Source§fn clone(&self) -> CborDetIntKind
fn clone(&self) -> CborDetIntKind
Returns a copy 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 PartialEq for CborDetIntKind
impl PartialEq for CborDetIntKind
impl Copy for CborDetIntKind
impl StructuralPartialEq for CborDetIntKind
Auto Trait Implementations§
impl Freeze for CborDetIntKind
impl RefUnwindSafe for CborDetIntKind
impl Send for CborDetIntKind
impl Sync for CborDetIntKind
impl Unpin for CborDetIntKind
impl UnwindSafe for CborDetIntKind
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