pub struct OwningHandle<O, H>where
    O: StableAddress,
    H: Deref,{
    pub(crate) handle: H,
    pub(crate) _owner: O,
}
Expand description

OwningHandle is a complement to OwningRef. Where OwningRef allows consumers to pass around an owned object and a dependent reference, OwningHandle contains an owned object and a dependent object.

OwningHandle can encapsulate a RefMut along with its associated RefCell, or an RwLockReadGuard along with its associated RwLock. However, the API is completely generic and there are no restrictions on what types of owning and dependent objects may be used.

OwningHandle is created by passing an owner object (which dereferences to a stable address) along with a callback which receives a pointer to that stable location. The callback may then dereference the pointer and mint a dependent object, with the guarantee that the returned object will not outlive the referent of the pointer.

Since the callback needs to dereference a raw pointer, it requires unsafe code. To avoid forcing this unsafety on most callers, the ToHandle trait is implemented for common data structures. Types that implement ToHandle can be wrapped into an OwningHandle without passing a callback.

Fields§

§handle: H§_owner: O

Implementations§

source§

impl<O, H> OwningHandle<O, H>where O: StableAddress, O::Target: ToHandle<Handle = H>, H: Deref,

source

pub fn new(o: O) -> Self

Create a new OwningHandle for a type that implements ToHandle. For types that don’t implement ToHandle, callers may invoke new_with_fn, which accepts a callback to perform the conversion.

source§

impl<O, H> OwningHandle<O, H>where O: StableAddress, O::Target: ToHandleMut<HandleMut = H>, H: DerefMut,

source

pub fn new_mut(o: O) -> Self

Create a new mutable OwningHandle for a type that implements ToHandleMut.

source§

impl<O, H> OwningHandle<O, H>where O: StableAddress, H: Deref,

source

pub fn new_with_fn<F>(o: O, f: F) -> Selfwhere F: FnOnce(*const O::Target) -> H,

Create a new OwningHandle. The provided callback will be invoked with a pointer to the object owned by o, and the returned value is stored as the object to which this OwningHandle will forward Deref and DerefMut.

source

pub fn try_new<F, E>(o: O, f: F) -> Result<Self, E>where F: FnOnce(*const O::Target) -> Result<H, E>,

Create a new OwningHandle. The provided callback will be invoked with a pointer to the object owned by o, and the returned value is stored as the object to which this OwningHandle will forward Deref and DerefMut.

source

pub fn as_owner(&self) -> &O

A getter for the underlying owner.

source

pub fn into_owner(self) -> O

Discards the dependent object and returns the owner.

Trait Implementations§

source§

impl<O, H> Deref for OwningHandle<O, H>where O: StableAddress, H: Deref,

§

type Target = <H as Deref>::Target

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<O, H> DerefMut for OwningHandle<O, H>where O: StableAddress, H: DerefMut,

source§

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

Mutably dereferences the value.
source§

impl<O, H> StableDeref for OwningHandle<O, H>where O: StableAddress, H: StableAddress,

Auto Trait Implementations§

§

impl<O, H> RefUnwindSafe for OwningHandle<O, H>where H: RefUnwindSafe, O: RefUnwindSafe,

§

impl<O, H> Send for OwningHandle<O, H>where H: Send, O: Send,

§

impl<O, H> Sync for OwningHandle<O, H>where H: Sync, O: Sync,

§

impl<O, H> Unpin for OwningHandle<O, H>where H: Unpin, O: Unpin,

§

impl<O, H> UnwindSafe for OwningHandle<O, H>where H: UnwindSafe, O: UnwindSafe,

Blanket Implementations§

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