pub struct PackageEvidence {
pub attempts: Vec<AttemptEvidence>,
pub readiness_checks: Vec<ReadinessEvidence>,
}Expand description
Evidence collected during package publishing.
This includes detailed information about each publish attempt and readiness verification checks. It’s used for debugging and auditing.
§Contents
attempts: Details of each publish attempt (command, output, timing)readiness_checks: Results of visibility verification checks
Fields§
§attempts: Vec<AttemptEvidence>§readiness_checks: Vec<ReadinessEvidence>Trait Implementations§
Source§impl Clone for PackageEvidence
impl Clone for PackageEvidence
Source§fn clone(&self) -> PackageEvidence
fn clone(&self) -> PackageEvidence
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 PackageEvidence
impl Debug for PackageEvidence
Source§impl<'de> Deserialize<'de> for PackageEvidence
impl<'de> Deserialize<'de> for PackageEvidence
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 PackageEvidence
impl RefUnwindSafe for PackageEvidence
impl Send for PackageEvidence
impl Sync for PackageEvidence
impl Unpin for PackageEvidence
impl UnsafeUnpin for PackageEvidence
impl UnwindSafe for PackageEvidence
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