pub struct DeployHistoryStats {
pub total: usize,
pub success: usize,
pub failed: usize,
pub by_error_code: BTreeMap<String, usize>,
pub by_target: BTreeMap<String, usize>,
}Fields§
§total: usize§success: usize§failed: usize§by_error_code: BTreeMap<String, usize>§by_target: BTreeMap<String, usize>Trait Implementations§
Source§impl Clone for DeployHistoryStats
impl Clone for DeployHistoryStats
Source§fn clone(&self) -> DeployHistoryStats
fn clone(&self) -> DeployHistoryStats
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 DeployHistoryStats
impl Debug for DeployHistoryStats
Source§impl Default for DeployHistoryStats
impl Default for DeployHistoryStats
Source§fn default() -> DeployHistoryStats
fn default() -> DeployHistoryStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployHistoryStats
impl<'de> Deserialize<'de> for DeployHistoryStats
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 DeployHistoryStats
impl RefUnwindSafe for DeployHistoryStats
impl Send for DeployHistoryStats
impl Sync for DeployHistoryStats
impl Unpin for DeployHistoryStats
impl UnsafeUnpin for DeployHistoryStats
impl UnwindSafe for DeployHistoryStats
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