pub struct QuickReportEntry {
pub package: PackageInfo,
pub forbids_unsafe: bool,
}Expand description
Entry of the report generated from scanning for packages that forbid the use of unsafe
Fields§
§package: PackageInfo§forbids_unsafe: boolWhether this package forbids the use of unsafe
Trait Implementations§
Source§impl Clone for QuickReportEntry
impl Clone for QuickReportEntry
Source§fn clone(&self) -> QuickReportEntry
fn clone(&self) -> QuickReportEntry
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 QuickReportEntry
impl Debug for QuickReportEntry
Source§impl<'de> Deserialize<'de> for QuickReportEntry
impl<'de> Deserialize<'de> for QuickReportEntry
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
Source§impl PartialEq for QuickReportEntry
impl PartialEq for QuickReportEntry
Source§impl Serialize for QuickReportEntry
impl Serialize for QuickReportEntry
impl Eq for QuickReportEntry
impl StructuralPartialEq for QuickReportEntry
Auto Trait Implementations§
impl Freeze for QuickReportEntry
impl RefUnwindSafe for QuickReportEntry
impl Send for QuickReportEntry
impl Sync for QuickReportEntry
impl Unpin for QuickReportEntry
impl UnwindSafe for QuickReportEntry
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