Struct netstack3_sync::Mutex
source · pub struct Mutex<T>(/* private fields */);
Expand description
A sync::Mutex
assuming lock poisoning will never occur.
Implementations§
source§impl<T> Mutex<T>
impl<T> Mutex<T>
sourcepub fn lock(&self) -> LockGuard<'_, T>
pub fn lock(&self) -> LockGuard<'_, T>
Acquires a mutex, blocking the current thread until it is able to do so.
See sync::Mutex::lock
for more details.
§Panics
This method may panic if the calling thread is already holding the lock.
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Consumes this mutex, returning the underlying data.
sourcepub fn get_mut(&mut self) -> &mut T
pub fn get_mut(&mut self) -> &mut T
Returns a mutable reference to the underlying data.
Since this call borrows the Mutex
mutably, no actual locking needs
to take place. See sync::Mutex::get_mut
for more details.
Trait Implementations§
source§impl<T: 'static> ExclusiveLock<T> for Mutex<T>
impl<T: 'static> ExclusiveLock<T> for Mutex<T>
source§impl<T, I: Ip> GenericOverIp<I> for Mutex<T>where
T: GenericOverIp<I>,
impl<T, I: Ip> GenericOverIp<I> for Mutex<T>where
T: GenericOverIp<I>,
§type Type = Mutex<<T as GenericOverIp<I>>::Type>
type Type = Mutex<<T as GenericOverIp<I>>::Type>
The type of
Self
when its IP-generic parameter is replaced with the
type NewIp
.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>
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<L, T> UnlockedAccess<L> for Twhere
L: UnlockedAccessMarkerFor<T>,
impl<L, T> UnlockedAccess<L> for Twhere
L: UnlockedAccessMarkerFor<T>,
§type Data = <L as UnlockedAccessMarkerFor<T>>::Data
type Data = <L as UnlockedAccessMarkerFor<T>>::Data
The type of state being accessed.
§type Guard<'l> = &'l <L as UnlockedAccessMarkerFor<T>>::Data
where
T: 'l
type Guard<'l> = &'l <L as UnlockedAccessMarkerFor<T>>::Data where T: 'l
A guard providing read access to the data.
source§fn access(&self) -> <T as UnlockedAccess<L>>::Guard<'_>
fn access(&self) -> <T as UnlockedAccess<L>>::Guard<'_>
How to access the state.