pub enum OutgoingResourceStatus {
Staged,
StagedSealing,
StagedSealed,
Advertised,
Transferring,
AwaitingProof,
}Variants§
Staged
A raw continuation stream parked at its sealed offset, deferring the seal until the segment ahead finishes serving during the receiver-busy window.
StagedSealing
The deferred seal is running on a crypto-pool worker; the verdict lands as StagedSealed.
StagedSealed
Sealed and named, waiting only for the proof ahead of it to release its advertisement.
Advertised
Transferring
AwaitingProof
Implementations§
Trait Implementations§
Source§impl Clone for OutgoingResourceStatus
impl Clone for OutgoingResourceStatus
Source§fn clone(&self) -> OutgoingResourceStatus
fn clone(&self) -> OutgoingResourceStatus
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 moreimpl Copy for OutgoingResourceStatus
Source§impl Debug for OutgoingResourceStatus
impl Debug for OutgoingResourceStatus
impl Eq for OutgoingResourceStatus
Source§impl PartialEq for OutgoingResourceStatus
impl PartialEq for OutgoingResourceStatus
impl StructuralPartialEq for OutgoingResourceStatus
Auto Trait Implementations§
impl Freeze for OutgoingResourceStatus
impl RefUnwindSafe for OutgoingResourceStatus
impl Send for OutgoingResourceStatus
impl Sync for OutgoingResourceStatus
impl Unpin for OutgoingResourceStatus
impl UnsafeUnpin for OutgoingResourceStatus
impl UnwindSafe for OutgoingResourceStatus
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