pub enum CompVecError {
Error(String),
ConversionError(String),
OutOfBoundsError(String),
}Variants§
Trait Implementations§
Source§impl Clone for CompVecError
impl Clone for CompVecError
Source§fn clone(&self) -> CompVecError
fn clone(&self) -> CompVecError
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 CompVecError
impl Debug for CompVecError
Source§impl Display for CompVecError
impl Display for CompVecError
Source§impl Error for CompVecError
impl Error for CompVecError
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 CompVecError
impl PartialEq for CompVecError
impl StructuralPartialEq for CompVecError
Auto Trait Implementations§
impl Freeze for CompVecError
impl RefUnwindSafe for CompVecError
impl Send for CompVecError
impl Sync for CompVecError
impl Unpin for CompVecError
impl UnwindSafe for CompVecError
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