pub struct IntegerOverflowError;Trait Implementations§
Source§impl BorshDeserialize for IntegerOverflowError
impl BorshDeserialize for IntegerOverflowError
fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl Clone for IntegerOverflowError
impl Clone for IntegerOverflowError
Source§fn clone(&self) -> IntegerOverflowError
fn clone(&self) -> IntegerOverflowError
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 IntegerOverflowError
impl Debug for IntegerOverflowError
Source§impl Display for IntegerOverflowError
impl Display for IntegerOverflowError
Source§impl Error for IntegerOverflowError
impl Error for IntegerOverflowError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for IntegerOverflowError
impl PartialEq for IntegerOverflowError
impl Eq for IntegerOverflowError
impl StructuralPartialEq for IntegerOverflowError
Auto Trait Implementations§
impl Freeze for IntegerOverflowError
impl RefUnwindSafe for IntegerOverflowError
impl Send for IntegerOverflowError
impl Sync for IntegerOverflowError
impl Unpin for IntegerOverflowError
impl UnwindSafe for IntegerOverflowError
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