Skip to main content

PhantomMutex

Struct PhantomMutex 

Source
pub struct PhantomMutex;
Expand description

A zero-sized raw mutex implementation that does not perform physical locking.

PhantomMutex can be used as the raw lock type in a KMutex<Class, PhantomMutex> field to serve as a zero-sized “phantom” lock in structs where physical synchronization is managed by an external shared lock (such as a ref-counted PeerHolder for peered dispatchers).

Using KMutex<Class, PhantomMutex> allows structs to integrate with #[guarded] and #[guarded_by(...)] without allocating memory for a physical mutex in every instance.

§Example

use ksync::{KCell, KMutex, PhantomMutex, guarded};

#[guarded]
struct RealObject {
    #[mutex]
    mu: KMutex,
}

#[guarded]
struct PeeredObject {
    #[mutex(RealObjectMuClass)]
    mu: KMutex<PhantomMutex>,
    #[guarded_by(mu)]
    value: KCell<i32>,
}

// When holding the shared physical mutex (`real_obj.mu`), call `lock_mu` to access fields
// protected by the zero-sized `PhantomMutex`:

    ksync::lock!(let guard = phantom_obj.lock_mu(&real_obj.mu));
    let value = guard.value();

// If already holding a lock token from another guard of the same class, call `guard_mu`
// to obtain an accessor object without re-locking:

    let other_value = other_phantom_obj.guard_mu(guard.token()).value();

Implementations§

Source§

impl PhantomMutex

Source

pub fn project<'__pin>( self: Pin<&'__pin mut Self>, ) -> PhantomMutexProjection<'__pin>

Pin-projects all fields of Self.

These fields are structurally pinned:

These fields are not structurally pinned:

Trait Implementations§

Source§

impl Clone for PhantomMutex

Source§

fn clone(&self) -> PhantomMutex

Returns a duplicate of the value. Read more
1.0.0 (const: unstable)§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for PhantomMutex

Source§

impl Debug for PhantomMutex

Source§

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

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

impl Default for PhantomMutex

Source§

fn default() -> PhantomMutex

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

impl HasPinData for PhantomMutex

Source§

type PinData = __ThePinData

Source§

unsafe fn __pin_data() -> Self::PinData

Source§

impl RawLock for PhantomMutex

Source§

type LockEntry = ()

Opaque stack entry storage type used by the lock validation loop detector (e.g. LockDep).
Source§

type DefaultPolicy = PhantomMutexPolicy

Default policy that should be used when acquiring this lock.
Source§

unsafe fn init(_class_id: *const c_void) -> impl PinInit<Self, Infallible>
where Self: Sized,

Returns a PinInit block to initialize the raw mutex in-place. Read more
Source§

fn as_mut_ptr(&self) -> *mut c_void

Convert the raw mutex reference to a standard c_void pointer for FFI.
Source§

const LOCK_FLAGS: LockFlags = lockdep::LOCK_FLAGS_NONE

Flags specifying validation rules for the lock class.

Auto Trait Implementations§

§

impl Freeze for PhantomMutex

§

impl RefUnwindSafe for PhantomMutex

§

impl Send for PhantomMutex

§

impl Sync for PhantomMutex

§

impl UnsafeUnpin for PhantomMutex

§

impl UnwindSafe for PhantomMutex

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Init<T> for T

Source§

unsafe fn __init(self, slot: *mut T) -> Result<(), !>

Initializes slot. Read more
Source§

fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E>
where F: FnOnce(&mut T) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
§

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

§

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> PinInit<T> for T

Source§

unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), !>

Initializes slot. Read more
Source§

fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E>
where F: FnOnce(Pin<&mut T>) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
Source§

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

Source§

type Target = T

The target type of the pointer.
Source§

fn to_mut_ptr(&self) -> *mut T

Casts the reference to a mutable raw pointer.
§

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

§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.