pub struct ConcreteApplierHost<A: Applier + 'static> { /* private fields */ }Implementations§
Source§impl<A: Applier + 'static> ConcreteApplierHost<A>
impl<A: Applier + 'static> ConcreteApplierHost<A>
pub fn new(applier: A) -> Self
pub fn borrow_typed(&self) -> RefMut<'_, A>
pub fn try_borrow_typed(&self) -> Result<RefMut<'_, A>, BorrowMutError>
pub fn into_inner(self) -> A
Trait Implementations§
Source§impl<A: Applier + 'static> ApplierHost for ConcreteApplierHost<A>
impl<A: Applier + 'static> ApplierHost for ConcreteApplierHost<A>
fn borrow_dyn(&self) -> RefMut<'_, dyn Applier>
Auto Trait Implementations§
impl<A> !Freeze for ConcreteApplierHost<A>
impl<A> !RefUnwindSafe for ConcreteApplierHost<A>
impl<A> Send for ConcreteApplierHost<A>where
A: Send,
impl<A> !Sync for ConcreteApplierHost<A>
impl<A> Unpin for ConcreteApplierHost<A>where
A: Unpin,
impl<A> UnwindSafe for ConcreteApplierHost<A>where
A: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more