pub struct IntOverflowError;Expand description
The integer value was too large to be represented as a CBOR integer.
In CBOR, only 64-bit positive and negative integers are supported. If your integer is out of this range, use a byte-stream instead.
Trait Implementations§
Source§impl Clone for IntOverflowError
impl Clone for IntOverflowError
Source§fn clone(&self) -> IntOverflowError
fn clone(&self) -> IntOverflowError
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 IntOverflowError
impl Debug for IntOverflowError
impl Copy for IntOverflowError
Auto Trait Implementations§
impl Freeze for IntOverflowError
impl RefUnwindSafe for IntOverflowError
impl Send for IntOverflowError
impl Sync for IntOverflowError
impl Unpin for IntOverflowError
impl UnwindSafe for IntOverflowError
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