pub struct ReplicaDynMut<'b> { /* private fields */ }Expand description
Mutable reference to a type-erased replicated component.
Implementations§
Trait Implementations§
Source§impl Deref for ReplicaDynMut<'_>
impl Deref for ReplicaDynMut<'_>
Source§impl DerefMut for ReplicaDynMut<'_>
impl DerefMut for ReplicaDynMut<'_>
Source§impl<'a> ReplicaDynMutTrait for ReplicaDynMut<'a>
impl<'a> ReplicaDynMutTrait for ReplicaDynMut<'a>
Source§fn to_dyn_mut(&mut self) -> &mut dyn Replicate
fn to_dyn_mut(&mut self) -> &mut dyn Replicate
Returns a mutable
dyn Replicate reference.Source§impl<'a> ReplicaDynRefTrait for ReplicaDynMut<'a>
impl<'a> ReplicaDynRefTrait for ReplicaDynMut<'a>
Source§fn to_dyn_ref(&self) -> &dyn Replicate
fn to_dyn_ref(&self) -> &dyn Replicate
Returns a shared
dyn Replicate reference.Auto Trait Implementations§
impl<'b> Freeze for ReplicaDynMut<'b>
impl<'b> !RefUnwindSafe for ReplicaDynMut<'b>
impl<'b> Send for ReplicaDynMut<'b>
impl<'b> Sync for ReplicaDynMut<'b>
impl<'b> Unpin for ReplicaDynMut<'b>
impl<'b> UnsafeUnpin for ReplicaDynMut<'b>
impl<'b> !UnwindSafe for ReplicaDynMut<'b>
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