Struct crossbeam_epoch::CompareExchangeError[][src]

pub struct CompareExchangeError<'g, T: ?Sized + Pointable, P: Pointer<T>> {
    pub current: Shared<'g, T>,
    pub new: P,
}
Expand description

The error returned on failed compare-and-swap operation.

Fields

current: Shared<'g, T>

The value in the atomic pointer at the time of the failed operation.

new: P

The new value, which the operation failed to store.

Trait Implementations

impl<T, P: Pointer<T> + Debug> Debug for CompareExchangeError<'_, T, P>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'g, T: ?Sized, P> RefUnwindSafe for CompareExchangeError<'g, T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

impl<'g, T, P> !Send for CompareExchangeError<'g, T, P>

impl<'g, T, P> !Sync for CompareExchangeError<'g, T, P>

impl<'g, T: ?Sized, P> Unpin for CompareExchangeError<'g, T, P> where
    P: Unpin

impl<'g, T: ?Sized, P> UnwindSafe for CompareExchangeError<'g, T, P> where
    P: UnwindSafe,
    T: RefUnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.