pub struct BarrierProgress {
pub state: BarrierState,
pub station_count: usize,
pub frozen_count: usize,
pub target_tick: Tick,
}Expand description
Barrier progress summary.
Fields§
§state: BarrierStateBarrier state.
station_count: usizeNumber of stations covered by the barrier.
frozen_count: usizeNumber of stations frozen.
target_tick: TickTarget tick selected for the barrier.
Trait Implementations§
Source§impl Clone for BarrierProgress
impl Clone for BarrierProgress
Source§fn clone(&self) -> BarrierProgress
fn clone(&self) -> BarrierProgress
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 BarrierProgress
Source§impl Debug for BarrierProgress
impl Debug for BarrierProgress
impl Eq for BarrierProgress
Source§impl PartialEq for BarrierProgress
impl PartialEq for BarrierProgress
impl StructuralPartialEq for BarrierProgress
Auto Trait Implementations§
impl Freeze for BarrierProgress
impl RefUnwindSafe for BarrierProgress
impl Send for BarrierProgress
impl Sync for BarrierProgress
impl Unpin for BarrierProgress
impl UnsafeUnpin for BarrierProgress
impl UnwindSafe for BarrierProgress
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