pub struct ContinuationEvidence<Id> { /* private fields */ }Expand description
Content-bound evidence for a suspended continuation and its receipt prefix.
Implementations§
Source§impl<Id> ContinuationEvidence<Id>
impl<Id> ContinuationEvidence<Id>
Sourcepub fn content_id(&self) -> &ContentId
pub fn content_id(&self) -> &ContentId
Returns the admitted program identity to which this continuation belongs.
Sourcepub fn receipt(&self) -> &WorkReceipt<Id>
pub fn receipt(&self) -> &WorkReceipt<Id>
Returns all work observed before suspension.
Trait Implementations§
Source§impl<Id: Clone> Clone for ContinuationEvidence<Id>
impl<Id: Clone> Clone for ContinuationEvidence<Id>
Source§fn clone(&self) -> ContinuationEvidence<Id>
fn clone(&self) -> ContinuationEvidence<Id>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<Id: Debug> Debug for ContinuationEvidence<Id>
impl<Id: Debug> Debug for ContinuationEvidence<Id>
impl<Id: Eq> Eq for ContinuationEvidence<Id>
Source§impl<Id: PartialEq> PartialEq for ContinuationEvidence<Id>
impl<Id: PartialEq> PartialEq for ContinuationEvidence<Id>
impl<Id: PartialEq> StructuralPartialEq for ContinuationEvidence<Id>
Auto Trait Implementations§
impl<Id> Freeze for ContinuationEvidence<Id>
impl<Id> RefUnwindSafe for ContinuationEvidence<Id>where
Id: RefUnwindSafe,
impl<Id> Send for ContinuationEvidence<Id>where
Id: Send,
impl<Id> Sync for ContinuationEvidence<Id>where
Id: Sync,
impl<Id> Unpin for ContinuationEvidence<Id>where
Id: Unpin,
impl<Id> UnsafeUnpin for ContinuationEvidence<Id>
impl<Id> UnwindSafe for ContinuationEvidence<Id>where
Id: 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