Struct reaper_medium::RegistrationHandle
source · [−]pub struct RegistrationHandle<T> { /* private fields */ }
Expand description
Handle which is returned from some session functions that register something.
This handle can be used to explicitly unregister the registered object and regain ownership of the struct which has been passed in originally.
Trait Implementations
sourceimpl<T> Clone for RegistrationHandle<T>
impl<T> Clone for RegistrationHandle<T>
sourceimpl<T> Debug for RegistrationHandle<T>
impl<T> Debug for RegistrationHandle<T>
sourceimpl<T: Hash> Hash for RegistrationHandle<T>
impl<T: Hash> Hash for RegistrationHandle<T>
sourceimpl<T: PartialEq> PartialEq<RegistrationHandle<T>> for RegistrationHandle<T>
impl<T: PartialEq> PartialEq<RegistrationHandle<T>> for RegistrationHandle<T>
sourcefn eq(&self, other: &RegistrationHandle<T>) -> bool
fn eq(&self, other: &RegistrationHandle<T>) -> bool
impl<T> Copy for RegistrationHandle<T>
impl<T: Eq> Eq for RegistrationHandle<T>
impl<T> Send for RegistrationHandle<T>
impl<T> StructuralEq for RegistrationHandle<T>
impl<T> StructuralPartialEq for RegistrationHandle<T>
impl<T> Sync for RegistrationHandle<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for RegistrationHandle<T>where
T: RefUnwindSafe,
impl<T> Unpin for RegistrationHandle<T>
impl<T> UnwindSafe for RegistrationHandle<T>where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read moresourcefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read moresourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read more