Struct backdrop_arc::OffsetArc

source ·
#[repr(transparent)]
pub struct OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,{ /* private fields */ }
Expand description

An Arc, except it holds a pointer to the T instead of to the entire ArcInner.

An OffsetArc<T, S> has the same layout and ABI as a non-null const T* in C, and may be used in FFI function signatures.

 Arc<T, S>    OffsetArc<T, S>
  |          |
  v          v
 ---------------------
| RefCount | T (data) | [ArcInner<T>]
 ---------------------

This means that this is a direct pointer to its contained data (and can be read from by both C++ and Rust), but we can also convert it to a “regular” Arc<T, S> by removing the offset.

This is very useful if you have an Arc-containing struct shared between Rust and C++, and wish for C++ to be able to read the data behind the Arc without incurring an FFI call overhead.

Implementations§

source§

impl<T, S> OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

source

pub fn with_arc<F, U>(&self, f: F) -> Uwhere F: FnOnce(&Arc<T, S>) -> U,

Temporarily converts |self| into a bonafide Arc and exposes it to the provided callback. The refcount is not modified.

source

pub fn make_mut(&mut self) -> &mut Twhere T: Clone,

If uniquely owned, provide a mutable reference Else create a copy, and mutate that

This is functionally the same thing as Arc::make_mut

source

pub fn clone_arc(&self) -> Arc<T, S>

Clone it as an Arc

source

pub fn borrow_arc(&self) -> ArcBorrow<'_, T>

Produce a pointer to the data that can be converted back to an Arc

Trait Implementations§

source§

impl<T, S> Clone for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<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: Debug, S> Debug for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

source§

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

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

impl<T, S> Deref for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

§

type Target = T

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<T, S> Drop for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T: PartialEq, S> PartialEq<OffsetArc<T, S>> for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

source§

fn eq(&self, other: &OffsetArc<T, S>) -> bool

This method tests for self and other values to be equal, and is used by ==.
source§

fn ne(&self, other: &OffsetArc<T, S>) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq, S> Eq for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>> + Eq,

source§

impl<T: Sync + Send, S> Send for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

source§

impl<T, S> StructuralEq for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

source§

impl<T: Sync + Send, S> Sync for OffsetArc<T, S>where S: BackdropStrategy<Box<ArcInner<T>>>,

Auto Trait Implementations§

§

impl<T, S> RefUnwindSafe for OffsetArc<T, S>where S: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, S> Unpin for OffsetArc<T, S>where S: Unpin, T: Unpin,

§

impl<T, S> UnwindSafe for OffsetArc<T, S>where S: UnwindSafe, T: UnwindSafe + RefUnwindSafe,

Blanket Implementations§

source§

impl<T, A, P> Access<T> for Pwhere A: Access<T> + ?Sized, P: Deref<Target = A>,

§

type Guard = <A as Access<T>>::Guard

A guard object containing the value and keeping it alive. Read more
source§

fn load(&self) -> <P as Access<T>>::Guard

The loading method. Read more
source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T, A> DynAccess<T> for Awhere A: Access<T>, <A as Access<T>>::Guard: 'static,

source§

fn load(&self) -> DynGuard<T>

The equivalent of Access::load.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.
source§

impl<T> ErasedDestructor for Twhere T: 'static,