pub struct CompareExchangeError<'g, T, P>{
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: PThe new value, which the operation failed to store.
Trait Implementations§
Auto Trait Implementations§
impl<'g, T, P> Freeze for CompareExchangeError<'g, T, P>
impl<'g, T, P> RefUnwindSafe for CompareExchangeError<'g, T, P>
impl<'g, T, P> !Send for CompareExchangeError<'g, T, P>
impl<'g, T, P> !Sync for CompareExchangeError<'g, T, P>
impl<'g, T, P> Unpin for CompareExchangeError<'g, T, P>
impl<'g, T, P> UnwindSafe for CompareExchangeError<'g, T, P>
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
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more