pub enum BorrowError {
Dropped(ValueDroppedError),
AlreadyBorrowedMut(AlreadyBorrowedMutError),
}
Expand description
An error that can occur when trying to borrow a value.
Variants§
Dropped(ValueDroppedError)
The value was dropped.
AlreadyBorrowedMut(AlreadyBorrowedMutError)
The value was already borrowed mutably.
Trait Implementations§
Source§impl Clone for BorrowError
impl Clone for BorrowError
Source§fn clone(&self) -> BorrowError
fn clone(&self) -> BorrowError
Returns a copy 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 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 From<BorrowError> for BorrowMutError
impl From<BorrowError> for BorrowMutError
Source§fn from(error: BorrowError) -> Self
fn from(error: BorrowError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BorrowError
impl PartialEq 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