pub struct PluginScanReport {
pub scanned_files: usize,
pub matched_plugins: usize,
pub diagnostic_findings: Vec<PluginDiagnosticFinding>,
pub descriptors: Vec<PluginDescriptor>,
}Fields§
§scanned_files: usize§matched_plugins: usize§diagnostic_findings: Vec<PluginDiagnosticFinding>§descriptors: Vec<PluginDescriptor>Trait Implementations§
Source§impl Clone for PluginScanReport
impl Clone for PluginScanReport
Source§fn clone(&self) -> PluginScanReport
fn clone(&self) -> PluginScanReport
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 PluginScanReport
impl Debug for PluginScanReport
Source§impl Default for PluginScanReport
impl Default for PluginScanReport
Source§fn default() -> PluginScanReport
fn default() -> PluginScanReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PluginScanReport
impl<'de> Deserialize<'de> for PluginScanReport
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 PluginScanReport
impl PartialEq for PluginScanReport
Source§impl Serialize for PluginScanReport
impl Serialize for PluginScanReport
impl Eq for PluginScanReport
impl StructuralPartialEq for PluginScanReport
Auto Trait Implementations§
impl Freeze for PluginScanReport
impl RefUnwindSafe for PluginScanReport
impl Send for PluginScanReport
impl Sync for PluginScanReport
impl Unpin for PluginScanReport
impl UnsafeUnpin for PluginScanReport
impl UnwindSafe for PluginScanReport
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