Struct sync_no_std::mutex::Mutex

source ·
pub struct Mutex<T: ?Sized, A: Allocator + Clone = Global> { /* private fields */ }

Implementations§

source§

impl<T, A: Allocator + Clone> Mutex<T, A>

source

pub const fn new_in(t: T, allocator: A) -> Mutex<T, A>

source§

impl<T> Mutex<T>

source

pub const fn new(t: T) -> Mutex<T>

source§

impl<T: ?Sized, A: Allocator + Clone> Mutex<T, A>

source

pub fn lock(&self) -> LockResult<MutexGuard<'_, T, A>>

source

pub fn try_lock(&self) -> TryLockResult<MutexGuard<'_, T, A>>

source

pub fn is_poisoned(&self) -> bool

source

pub fn clear_poison(&self)

source

pub fn into_inner(self) -> LockResult<T>
where T: Sized,

source

pub fn get_mut(&mut self) -> LockResult<&mut T>

Trait Implementations§

source§

impl<T: ?Sized + Debug, A: Allocator + Clone> Debug for Mutex<T, A>

source§

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

Formats the value using the given formatter. Read more
source§

impl<T: Default> Default for Mutex<T>

source§

fn default() -> Mutex<T>

Returns the “default value” for a type. Read more
source§

impl<T> From<T> for Mutex<T>

source§

fn from(t: T) -> Self

Converts to this type from the input type.
source§

impl<T: ?Sized + Send, A: Allocator + Clone> Send for Mutex<T, A>

source§

impl<T: ?Sized + Send, A: Allocator + Clone> Sync for Mutex<T, A>

Auto Trait Implementations§

§

impl<T, A = Global> !Freeze for Mutex<T, A>

§

impl<T, A = Global> !RefUnwindSafe for Mutex<T, A>

§

impl<T, A> Unpin for Mutex<T, A>
where T: Unpin + ?Sized, A: Unpin,

§

impl<T, A = Global> !UnwindSafe for Mutex<T, A>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.