pub enum StationBarrierPhase {
WaitingTick,
Frozen,
Resumed,
}Expand description
Per-station progress inside a full runtime barrier.
Variants§
WaitingTick
Station is part of the barrier but has not reached the target tick.
Frozen
Station reached the target tick and is frozen.
Resumed
Station has resumed.
Trait Implementations§
Source§impl Clone for StationBarrierPhase
impl Clone for StationBarrierPhase
Source§fn clone(&self) -> StationBarrierPhase
fn clone(&self) -> StationBarrierPhase
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 StationBarrierPhase
Source§impl Debug for StationBarrierPhase
impl Debug for StationBarrierPhase
impl Eq for StationBarrierPhase
Source§impl PartialEq for StationBarrierPhase
impl PartialEq for StationBarrierPhase
impl StructuralPartialEq for StationBarrierPhase
Auto Trait Implementations§
impl Freeze for StationBarrierPhase
impl RefUnwindSafe for StationBarrierPhase
impl Send for StationBarrierPhase
impl Sync for StationBarrierPhase
impl Unpin for StationBarrierPhase
impl UnsafeUnpin for StationBarrierPhase
impl UnwindSafe for StationBarrierPhase
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