pub struct LangReceipt {
pub schema_version: u32,
pub generated_at_ms: u128,
pub tool: ToolInfo,
pub mode: String,
pub status: ScanStatus,
pub warnings: Vec<String>,
pub scan: ScanArgs,
pub args: LangArgsMeta,
pub report: LangReport,
}Fields§
§schema_version: u32§generated_at_ms: u128§tool: ToolInfo§mode: String§status: ScanStatus§warnings: Vec<String>§scan: ScanArgs§args: LangArgsMeta§report: LangReportTrait Implementations§
Source§impl Clone for LangReceipt
impl Clone for LangReceipt
Source§fn clone(&self) -> LangReceipt
fn clone(&self) -> LangReceipt
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 LangReceipt
impl Debug for LangReceipt
Source§impl<'de> Deserialize<'de> for LangReceipt
impl<'de> Deserialize<'de> for LangReceipt
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 LangReceipt
impl RefUnwindSafe for LangReceipt
impl Send for LangReceipt
impl Sync for LangReceipt
impl Unpin for LangReceipt
impl UnsafeUnpin for LangReceipt
impl UnwindSafe for LangReceipt
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