pub struct Mutex<T>(/* private fields */);
Expand description
Provides interior mutability.
It’s tailored for internal use in egui should only be used for short locks (as a guideline, locks should never be held longer than a single frame). In debug builds, when a lock can’t be acquired within 10 seconds, we assume a deadlock and will panic.
This is a thin wrapper around parking_lot::Mutex
.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> !Freeze for Mutex<T>
impl<T> !RefUnwindSafe for Mutex<T>
impl<T> Send for Mutex<T>where
T: Send,
impl<T> Sync for Mutex<T>where
T: Send,
impl<T> Unpin for Mutex<T>where
T: Unpin,
impl<T> UnwindSafe for Mutex<T>where
T: UnwindSafe,
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