[][src]Trait owning_ref::ToHandle

pub trait ToHandle {
    type Handle: Deref;
    unsafe fn to_handle(x: *const Self) -> Self::Handle;
}
[]

Trait to implement the conversion of owner to handle for common types.

Associated Types

type Handle: Deref[]

The type of handle to be encapsulated by the OwningHandle.

Required methods

unsafe fn to_handle(x: *const Self) -> Self::Handle[]

Given an appropriately-long-lived pointer to ourselves, create a handle to be encapsulated by the OwningHandle.

Implementations on Foreign Types

impl<T: 'static> ToHandle for RefCell<T>[src][]

type Handle = Ref<'static, T>

Implementors