VRcMapped

Struct VRcMapped 

Source
pub struct VRcMapped<VTable: VTableMetaDropInPlace + 'static, MappedType: ?Sized> { /* private fields */ }
Expand description

VRcMapped allows bundling a VRc of a type along with a reference to an object that’s reachable through the data the VRc owns and that satisfies the requirements of a Pin. VRCMapped is constructed using VRc::map and, like VRc, has a weak counterpart, VWeakMapped.

Implementations§

Source§

impl<VTable: VTableMetaDropInPlace + 'static, MappedType: ?Sized> VRcMapped<VTable, MappedType>

Source

pub fn downgrade(this: &Self) -> VWeakMapped<VTable, MappedType>

Returns a new VWeakMapped that points to this instance and can be upgraded back to a Self as long as a VRc/VMapped exists.

Source

pub fn as_pin_ref(&self) -> Pin<&MappedType>

Create a Pinned reference to the mapped type.

This is safe because the map function returns a pinned reference.

Source

pub fn map<ReMappedType: ?Sized>( this: Self, map_fn: impl for<'r> FnOnce(Pin<&'r MappedType>) -> Pin<&'r ReMappedType>, ) -> VRcMapped<VTable, ReMappedType>

This function allows safely holding a reference to a field inside the VRcMapped. In order to accomplish that, you need to provide a mapping function map_fn in which you need to provide and return a pinned reference to the object you would like to map. The returned VRcMapped allows obtaining that pinned reference again using VRcMapped::as_pin_ref.

See also VRc::map

Source

pub fn origin(this: &Self) -> VRc<VTable>

Returns a strong reference to the object that the mapping originates from.

Trait Implementations§

Source§

impl<VTable: VTableMetaDropInPlace + 'static, MappedType: ?Sized> Clone for VRcMapped<VTable, MappedType>

Source§

fn clone(&self) -> Self

Returns a duplicate 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<VTable: VTableMetaDropInPlace + 'static, MappedType: ?Sized> Deref for VRcMapped<VTable, MappedType>

Source§

type Target = MappedType

The resulting type after dereferencing.
Source§

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

Dereferences the value.

Auto Trait Implementations§

§

impl<VTable, MappedType> Freeze for VRcMapped<VTable, MappedType>
where MappedType: ?Sized,

§

impl<VTable, MappedType> RefUnwindSafe for VRcMapped<VTable, MappedType>
where MappedType: RefUnwindSafe + ?Sized, <VTable as VTableMeta>::VTable: RefUnwindSafe,

§

impl<VTable, MappedType> !Send for VRcMapped<VTable, MappedType>

§

impl<VTable, MappedType> !Sync for VRcMapped<VTable, MappedType>

§

impl<VTable, MappedType> Unpin for VRcMapped<VTable, MappedType>
where MappedType: ?Sized,

§

impl<VTable, MappedType> UnwindSafe for VRcMapped<VTable, MappedType>
where MappedType: RefUnwindSafe + ?Sized, <VTable as VTableMeta>::VTable: RefUnwindSafe,

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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 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<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> ToOwned for T
where T: Clone,

Source§

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