kernel::sync

Struct UniqueArc

Source
pub struct UniqueArc<T: ?Sized> { /* private fields */ }
Expand description

A refcounted object that is known to have a refcount of 1.

It is mutable and can be converted to an Arc so that it can be shared.

§Invariants

inner always has a reference count of 1.

§Examples

In the following example, we make changes to the inner object before turning it into an Arc<Test> object (after which point, it cannot be mutated directly). Note that x.into() cannot fail.

use kernel::sync::{Arc, UniqueArc};

struct Example {
    a: u32,
    b: u32,
}

fn test() -> Result<Arc<Example>> {
    let mut x = UniqueArc::new(Example { a: 10, b: 20 }, GFP_KERNEL)?;
    x.a += 1;
    x.b += 1;
    Ok(x.into())
}

In the following example we first allocate memory for a refcounted Example but we don’t initialise it on allocation. We do initialise it later with a call to UniqueArc::write, followed by a conversion to Arc<Example>. This is particularly useful when allocation happens in one context (e.g., sleepable) and initialisation in another (e.g., atomic):

use kernel::sync::{Arc, UniqueArc};

struct Example {
    a: u32,
    b: u32,
}

fn test() -> Result<Arc<Example>> {
    let x = UniqueArc::new_uninit(GFP_KERNEL)?;
    Ok(x.write(Example { a: 10, b: 20 }).into())
}

In the last example below, the caller gets a pinned instance of Example while converting to Arc<Example>; this is useful in scenarios where one needs a pinned reference during initialisation, for example, when initialising fields that are wrapped in locks.

use kernel::sync::{Arc, UniqueArc};

struct Example {
    a: u32,
    b: u32,
}

fn test() -> Result<Arc<Example>> {
    let mut pinned = Pin::from(UniqueArc::new(Example { a: 10, b: 20 }, GFP_KERNEL)?);
    // We can modify `pinned` because it is `Unpin`.
    pinned.as_mut().a += 1;
    Ok(pinned.into())
}

Implementations§

Source§

impl<T> UniqueArc<T>

Source

pub fn new(value: T, flags: Flags) -> Result<Self, AllocError>

Tries to allocate a new UniqueArc instance.

Source

pub fn new_uninit(flags: Flags) -> Result<UniqueArc<MaybeUninit<T>>, AllocError>

Tries to allocate a new UniqueArc instance whose contents are not initialised yet.

Source§

impl<T> UniqueArc<MaybeUninit<T>>

Source

pub fn write(self, value: T) -> UniqueArc<T>

Converts a UniqueArc<MaybeUninit<T>> into a UniqueArc<T> by writing a value into it.

Source

pub unsafe fn assume_init(self) -> UniqueArc<T>

Unsafely assume that self is initialized.

§Safety

The caller guarantees that the value behind this pointer has been initialized. It is immediate UB to call this when the value is not initialized.

Source

pub fn init_with<E>(self, init: impl Init<T, E>) -> Result<UniqueArc<T>, E>

Initialize self using the given initializer.

Source

pub fn pin_init_with<E>( self, init: impl PinInit<T, E>, ) -> Result<Pin<UniqueArc<T>>, E>

Pin-initialize self using the given pin-initializer.

Trait Implementations§

Source§

impl<T: Debug + ?Sized> Debug for UniqueArc<T>

Source§

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

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

impl<T: ?Sized> Deref for UniqueArc<T>

Source§

type Target = T

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<T: ?Sized> DerefMut for UniqueArc<T>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
Source§

impl<T: Display + ?Sized> Display for UniqueArc<T>

Source§

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

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

impl<T: ?Sized> From<UniqueArc<T>> for Arc<T>

Source§

fn from(item: UniqueArc<T>) -> Self

Converts to this type from the input type.
Source§

impl<T, const ID: u64> From<UniqueArc<T>> for ListArc<T, ID>
where T: ListArcSafe<ID> + ?Sized,

Source§

fn from(unique: UniqueArc<T>) -> Self

Convert a UniqueArc into a ListArc.

Source§

impl<T: ?Sized> From<UniqueArc<T>> for Pin<UniqueArc<T>>

Source§

fn from(obj: UniqueArc<T>) -> Self

Converts to this type from the input type.
Source§

impl<T> InPlaceInit<T> for UniqueArc<T>

Source§

type PinnedSelf = Pin<UniqueArc<T>>

Pinned version of Self. Read more
Source§

fn try_pin_init<E>( init: impl PinInit<T, E>, flags: Flags, ) -> Result<Self::PinnedSelf, E>
where E: From<AllocError>,

Use the given pin-initializer to pin-initialize a T inside of a new smart pointer of this type. Read more
Source§

fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E>
where E: From<AllocError>,

Use the given initializer to in-place initialize a T.
Source§

fn pin_init<E>( init: impl PinInit<T, E>, flags: Flags, ) -> Result<Self::PinnedSelf>
where Error: From<E>,

Use the given pin-initializer to pin-initialize a T inside of a new smart pointer of this type. Read more
Source§

fn init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self>
where Error: From<E>,

Use the given initializer to in-place initialize a T.
Source§

impl<T> InPlaceWrite<T> for UniqueArc<MaybeUninit<T>>

Source§

type Initialized = UniqueArc<T>

The type Self turns into when the contents are initialized.
Source§

fn write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E>

Use the given initializer to write a value into self. Read more
Source§

fn write_pin_init<E>( self, init: impl PinInit<T, E>, ) -> Result<Pin<Self::Initialized>, E>

Use the given pin-initializer to write a value into self. Read more

Auto Trait Implementations§

§

impl<T> Freeze for UniqueArc<T>
where T: ?Sized,

§

impl<T> !RefUnwindSafe for UniqueArc<T>

§

impl<T> Send for UniqueArc<T>
where T: Sync + Send + ?Sized,

§

impl<T> Sync for UniqueArc<T>
where T: Sync + Send + ?Sized,

§

impl<T> Unpin for UniqueArc<T>
where T: ?Sized,

§

impl<T> !UnwindSafe for UniqueArc<T>

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

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, E> Init<T, E> for T

Source§

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

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

Source§

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

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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.