kernel::sync

Struct ArcBorrow

Source
pub struct ArcBorrow<'a, T: ?Sized + 'a> { /* private fields */ }
Expand description

A borrowed reference to an Arc instance.

For cases when one doesn’t ever need to increment the refcount on the allocation, it is simpler to use just &T, which we can trivially get from an Arc<T> instance.

However, when one may need to increment the refcount, it is preferable to use an ArcBorrow<T> over &Arc<T> because the latter results in a double-indirection: a pointer (shared reference) to a pointer (Arc<T>) to the object (T). An ArcBorrow eliminates this double indirection while still allowing one to increment the refcount and getting an Arc<T> when/if needed.

§Invariants

There are no mutable references to the underlying Arc, and it remains valid for the lifetime of the ArcBorrow instance.

§Example

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

struct Example;

fn do_something(e: ArcBorrow<'_, Example>) -> Arc<Example> {
    e.into()
}

let obj = Arc::new(Example, GFP_KERNEL)?;
let cloned = do_something(obj.as_arc_borrow());

// Assert that both `obj` and `cloned` point to the same underlying object.
assert!(core::ptr::eq(&*obj, &*cloned));

Using ArcBorrow<T> as the type of self:

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

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

impl Example {
    fn use_reference(self: ArcBorrow<'_, Self>) {
        // ...
    }
}

let obj = Arc::new(Example { a: 10, b: 20 }, GFP_KERNEL)?;
obj.as_arc_borrow().use_reference();

Implementations§

Source§

impl<T: ?Sized> ArcBorrow<'_, T>

Source

pub unsafe fn from_raw(ptr: *const T) -> Self

Creates an ArcBorrow to an Arc that has previously been deconstructed with Arc::into_raw.

§Safety
  • The provided pointer must originate from a call to Arc::into_raw.
  • For the duration of the lifetime annotated on this ArcBorrow, the reference count must not hit zero.
  • For the duration of the lifetime annotated on this ArcBorrow, there must not be a UniqueArc reference to this value.

Trait Implementations§

Source§

impl<T: ?Sized> Clone for ArcBorrow<'_, T>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<T: ?Sized> Deref for ArcBorrow<'_, T>

Source§

type Target = T

The resulting type after dereferencing.
Source§

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

Dereferences the value.
Source§

impl<T: ?Sized> From<ArcBorrow<'_, T>> for Arc<T>

Source§

fn from(b: ArcBorrow<'_, T>) -> Self

Converts to this type from the input type.
Source§

impl<T: ?Sized> Copy for ArcBorrow<'_, T>

Source§

impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<ArcBorrow<'_, U>> for ArcBorrow<'_, T>

Auto Trait Implementations§

§

impl<'a, T> Freeze for ArcBorrow<'a, T>
where T: ?Sized,

§

impl<'a, T> !RefUnwindSafe for ArcBorrow<'a, T>

§

impl<'a, T> !Send for ArcBorrow<'a, T>

§

impl<'a, T> !Sync for ArcBorrow<'a, T>

§

impl<'a, T> Unpin for ArcBorrow<'a, T>
where T: ?Sized,

§

impl<'a, T> !UnwindSafe for ArcBorrow<'a, 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> CloneToUninit for T
where T: Clone,

Source§

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

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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.