[][src]Struct global::BorrowFail

pub struct BorrowFail;

A failure occured while borrowing a Global<T> value.

This happens when the value is incorrectly borrowed twice within a single thread. While cross-thread locking will simply block until the value is available, within a single thread potential deadlocks are detected. An error can occur in one of three ways:

  • Attempting to immutably borrow a value that is already mutably borrowed.
  • Attempting to mutably borrow a value that is already mutably borrowed.
  • Attempting to mutably borrow a value that is already immutably borrowed.

Note that this error will not be raised in the case of multiple immutable borrows.

Trait Implementations

impl Debug for BorrowFail[src]

impl Display for BorrowFail[src]

impl Error for BorrowFail[src]

fn description(&self) -> &str1.0.0[src]

This method is soft-deprecated. Read more

fn cause(&self) -> Option<&dyn Error>1.0.0[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

The lower-level cause of this error, if any. Read more

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

The lower-level source of this error, if any. Read more

fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0[src]

Gets the TypeId of self

Auto Trait Implementations

impl Send for BorrowFail

impl Sync for BorrowFail

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]