Struct type_handle::Handle

source ·
pub struct Handle<T>(_, _);

Implementations§

source§

impl<T> Handle<T>

source

pub fn from_instance(t: T) -> Self

Wrap a struct instance into a handle.

source

pub fn from_ref(t: &T) -> &Self

Wrap a struct reference into a handle.

source

pub fn from_ref_mut(t: &mut T) -> &mut Self

Wrap a mutable struct reference into a mutable handle.

source

pub fn from_ptr(tp: *const T) -> *const Self

Wrap a const pointer into a const handle pointer.

source

pub fn from_ptr_mut(tp: *mut T) -> *mut Self

Wrap a mut pointer into a mut handle pointer.

source

pub fn replace(self, t: &mut T) -> Self

Replaces the instance with the one from this Handle, and returns the replaced one wrapped in a Handle without dropping either one.

source

pub fn into_instance(self) -> T

Consumes the wrapper and returns the wrapped type.

source

pub fn instance(&self) -> &T

Returns a reference to the wrapped type.

source

pub fn instance_mut(&mut self) -> &mut T

Returns a mutable reference to the wrapped type.

Trait Implementations§

source§

impl<T> AsRef<Handle<T>> for Handle<T>

source§

fn as_ref(&self) -> &Self

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T: Clone> Clone for Handle<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> Deref for Handle<T>

§

type Target = T

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<T> DerefMut for Handle<T>

source§

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

Mutably dereferences the value.
source§

impl<T> From<T> for Handle<T>

source§

fn from(t: T) -> Self

Converts to this type from the input type.
source§

impl<T: PartialEq> PartialEq<Handle<T>> for Handle<T>

source§

fn eq(&self, other: &Self) -> bool

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

fn ne(&self, other: &Rhs) -> bool

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

impl<T> Send for Handle<T>

source§

impl<T> Sync for Handle<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Handle<T>where T: RefUnwindSafe,

§

impl<T> Unpin for Handle<T>where T: Unpin,

§

impl<T> UnwindSafe for Handle<T>where T: 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<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
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.