pub struct ArtifactAudit {
pub ok: bool,
pub command: String,
pub frontier: String,
pub artifact_count: usize,
pub checked_local_blobs: usize,
pub local_blob_bytes: u64,
pub by_kind: BTreeMap<String, usize>,
pub by_storage_mode: BTreeMap<String, usize>,
pub issue_count: usize,
pub issues: Vec<ArtifactAuditIssue>,
}Fields§
§ok: bool§command: String§frontier: String§artifact_count: usize§checked_local_blobs: usize§local_blob_bytes: u64§by_kind: BTreeMap<String, usize>§by_storage_mode: BTreeMap<String, usize>§issue_count: usize§issues: Vec<ArtifactAuditIssue>Trait Implementations§
Source§impl Clone for ArtifactAudit
impl Clone for ArtifactAudit
Source§fn clone(&self) -> ArtifactAudit
fn clone(&self) -> ArtifactAudit
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 ArtifactAudit
impl Debug for ArtifactAudit
Source§impl<'de> Deserialize<'de> for ArtifactAudit
impl<'de> Deserialize<'de> for ArtifactAudit
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 ArtifactAudit
impl RefUnwindSafe for ArtifactAudit
impl Send for ArtifactAudit
impl Sync for ArtifactAudit
impl Unpin for ArtifactAudit
impl UnsafeUnpin for ArtifactAudit
impl UnwindSafe for ArtifactAudit
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