pub struct HandoffState(pub Vec<u8>);Expand description
Opaque serialized external session carried across a handover.
The bytes are produced by the outgoing singleton’s
SingletonHandoff::prepare_handoff and handed to the incoming
singleton’s SingletonHandoff::assume. The manager never inspects
them.
Tuple Fields§
§0: Vec<u8>Auto Trait Implementations§
impl Freeze for HandoffState
impl RefUnwindSafe for HandoffState
impl Send for HandoffState
impl Sync for HandoffState
impl Unpin for HandoffState
impl UnsafeUnpin for HandoffState
impl UnwindSafe for HandoffState
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