Struct swc_common::sync::LockCell
source · [−]pub struct LockCell<T>(_);
Implementations
Trait Implementations
sourceimpl<T: Ord + Copy> Ord for LockCell<T>
impl<T: Ord + Copy> Ord for LockCell<T>
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<T: PartialEq + Copy> PartialEq<LockCell<T>> for LockCell<T>
impl<T: PartialEq + Copy> PartialEq<LockCell<T>> for LockCell<T>
sourceimpl<T: PartialOrd + Copy> PartialOrd<LockCell<T>> for LockCell<T>
impl<T: PartialOrd + Copy> PartialOrd<LockCell<T>> for LockCell<T>
sourcefn partial_cmp(&self, other: &LockCell<T>) -> Option<Ordering>
fn partial_cmp(&self, other: &LockCell<T>) -> Option<Ordering>
sourcefn le(&self, other: &LockCell<T>) -> bool
fn le(&self, other: &LockCell<T>) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<T: Eq + Copy> Eq for LockCell<T>
Auto Trait Implementations
impl<T> !RefUnwindSafe for LockCell<T>
impl<T> Send for LockCell<T>where
T: Send,
impl<T> Sync for LockCell<T>where
T: Send,
impl<T> Unpin for LockCell<T>where
T: Unpin,
impl<T> UnwindSafe for LockCell<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more