pub struct WireTerm(/* private fields */);Expand description
An opaque term payload that crosses the dynamic actor boundary.
Arc<OwnedTerm> so it is Clone (the ActorMessage bound) without copying
the graph, and Send + Sync + 'static so a captured request survives a
restart factory.
Implementations§
Trait Implementations§
Source§impl ActorMessage for WireTerm
impl ActorMessage for WireTerm
Auto Trait Implementations§
impl Freeze for WireTerm
impl RefUnwindSafe for WireTerm
impl Send for WireTerm
impl Sync for WireTerm
impl Unpin for WireTerm
impl UnsafeUnpin for WireTerm
impl UnwindSafe for WireTerm
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