pub struct ObservePeer<A> {
pub peer: A,
}Expand description
Ask the local interpreter to observe the exact peer incarnation selected at
peer when this request is interpreted.
PeerStopped is the pure result protocol. It arrives eventually if a
selected live incarnation later terminates, or may arrive immediately when
the interpreter has authoritative retained termination for the requested
incarnation. Absence from a live-address table is not such authority: an
interpreter that can select neither a live incarnation nor retained
terminal history must return an interpreter error rather than fabricate a
stop result.
Fields§
§peer: AImplementations§
Source§impl<A> ObservePeer<A>
impl<A> ObservePeer<A>
Trait Implementations§
Source§impl<A: Clone> Clone for ObservePeer<A>
impl<A: Clone> Clone for ObservePeer<A>
Source§fn clone(&self) -> ObservePeer<A>
fn clone(&self) -> ObservePeer<A>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<A: Debug> Debug for ObservePeer<A>
impl<A: Debug> Debug for ObservePeer<A>
Source§impl<A> From<A> for ObservePeer<A>
impl<A> From<A> for ObservePeer<A>
Source§impl<A: PartialEq> PartialEq for ObservePeer<A>
impl<A: PartialEq> PartialEq for ObservePeer<A>
Source§impl<A: Address, Sends> SendInput<ObservePeer<A>, Own> for WatchSends<A, Sends>
impl<A: Address, Sends> SendInput<ObservePeer<A>, Own> for WatchSends<A, Sends>
fn emit(&mut self, input: ObservePeer<A>)
impl<A: Copy> Copy for ObservePeer<A>
impl<A: Eq> Eq for ObservePeer<A>
impl<A> StructuralPartialEq for ObservePeer<A>
Auto Trait Implementations§
impl<A> Freeze for ObservePeer<A>where
A: Freeze,
impl<A> RefUnwindSafe for ObservePeer<A>where
A: RefUnwindSafe,
impl<A> Send for ObservePeer<A>where
A: Send,
impl<A> Sync for ObservePeer<A>where
A: Sync,
impl<A> Unpin for ObservePeer<A>where
A: Unpin,
impl<A> UnsafeUnpin for ObservePeer<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for ObservePeer<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