pub struct PhaseSummary {
pub phase_id: PhaseId,
pub label: String,
pub planned: usize,
pub ok: usize,
pub failed: usize,
pub description: Option<String>,
pub role: Option<String>,
}Fields§
§phase_id: PhaseId§label: String§planned: usize§ok: usize§failed: usize§description: Option<String>§role: Option<String>Trait Implementations§
Source§impl Clone for PhaseSummary
impl Clone for PhaseSummary
Source§fn clone(&self) -> PhaseSummary
fn clone(&self) -> PhaseSummary
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 Debug for PhaseSummary
impl Debug for PhaseSummary
Source§impl<'de> Deserialize<'de> for PhaseSummary
impl<'de> Deserialize<'de> for PhaseSummary
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 PhaseSummary
impl RefUnwindSafe for PhaseSummary
impl Send for PhaseSummary
impl Sync for PhaseSummary
impl Unpin for PhaseSummary
impl UnsafeUnpin for PhaseSummary
impl UnwindSafe for PhaseSummary
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