pub enum BorrowError {
OutOfBounds,
AlreadyBorrowedMutably,
AlreadyBorrowed,
}
Expand description
A borrow error.
Variants§
OutOfBounds
The element is out of bounds.
AlreadyBorrowedMutably
The element is already borrowed mutably.
AlreadyBorrowed
The element is already borrowed immutably.
Trait Implementations§
Source§impl Debug for BorrowError
impl Debug for BorrowError
Source§impl Display for BorrowError
impl Display for BorrowError
Source§impl Error for BorrowError
impl Error for BorrowError
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 BorrowError
impl PartialEq for BorrowError
impl Eq for BorrowError
impl StructuralPartialEq for BorrowError
Auto Trait Implementations§
impl Freeze for BorrowError
impl RefUnwindSafe for BorrowError
impl Send for BorrowError
impl Sync for BorrowError
impl Unpin for BorrowError
impl UnwindSafe for BorrowError
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