pub struct PhaseStats {
pub total: usize,
pub pending: usize,
pub in_progress: usize,
pub done: usize,
pub blocked: usize,
pub expanded: usize,
pub total_complexity: u32,
}Fields§
§total: usize§pending: usize§in_progress: usize§done: usize§blocked: usize§expanded: usize§total_complexity: u32Trait Implementations§
Source§impl Clone for PhaseStats
impl Clone for PhaseStats
Source§fn clone(&self) -> PhaseStats
fn clone(&self) -> PhaseStats
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 Debug for PhaseStats
impl Debug for PhaseStats
Source§impl<'de> Deserialize<'de> for PhaseStats
impl<'de> Deserialize<'de> for PhaseStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PhaseStats
impl RefUnwindSafe for PhaseStats
impl Send for PhaseStats
impl Sync for PhaseStats
impl Unpin for PhaseStats
impl UnwindSafe for PhaseStats
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