pub struct LimitedVecError;Expand description
Error type for limited vector overflowing.
Implementations§
Trait Implementations§
Source§impl Clone for LimitedVecError
impl Clone for LimitedVecError
Source§fn clone(&self) -> LimitedVecError
fn clone(&self) -> LimitedVecError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LimitedVecError
Source§impl Debug for LimitedVecError
impl Debug for LimitedVecError
Source§impl Default for LimitedVecError
impl Default for LimitedVecError
Source§fn default() -> LimitedVecError
fn default() -> LimitedVecError
Returns the “default value” for a type. Read more
Source§impl Display for LimitedVecError
impl Display for LimitedVecError
impl Eq for LimitedVecError
Source§impl Error for LimitedVecError
impl Error for LimitedVecError
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 LimitedVecError
impl PartialEq for LimitedVecError
Source§fn eq(&self, other: &LimitedVecError) -> bool
fn eq(&self, other: &LimitedVecError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LimitedVecError
Auto Trait Implementations§
impl Freeze for LimitedVecError
impl RefUnwindSafe for LimitedVecError
impl Send for LimitedVecError
impl Sync for LimitedVecError
impl Unpin for LimitedVecError
impl UnsafeUnpin for LimitedVecError
impl UnwindSafe for LimitedVecError
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