pub struct Receipt {
pub schema_version: u8,
pub tool: ToolReceipt,
pub checked_at: DateTime<Utc>,
pub mode: String,
pub summary: Summary,
pub checks: Vec<Check>,
pub commands: Vec<CommandRecord>,
pub env_files: Vec<EnvFileAnalysis>,
pub metadata: BTreeMap<String, String>,
}Fields§
§schema_version: u8§tool: ToolReceipt§checked_at: DateTime<Utc>§mode: String§summary: Summary§checks: Vec<Check>§commands: Vec<CommandRecord>§env_files: Vec<EnvFileAnalysis>§metadata: BTreeMap<String, String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Receipt
impl RefUnwindSafe for Receipt
impl Send for Receipt
impl Sync for Receipt
impl Unpin for Receipt
impl UnsafeUnpin for Receipt
impl UnwindSafe for Receipt
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