pub struct PluginVerifyReport {
pub path: PathBuf,
pub target: String,
pub tier: PluginTier,
pub plugin_count: usize,
pub pack_count: usize,
pub status: String,
pub findings: Vec<String>,
}Fields§
§path: PathBuf§target: String§tier: PluginTier§plugin_count: usize§pack_count: usize§status: String§findings: Vec<String>Trait Implementations§
Source§impl Clone for PluginVerifyReport
impl Clone for PluginVerifyReport
Source§fn clone(&self) -> PluginVerifyReport
fn clone(&self) -> PluginVerifyReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PluginVerifyReport
impl Debug for PluginVerifyReport
Auto Trait Implementations§
impl Freeze for PluginVerifyReport
impl RefUnwindSafe for PluginVerifyReport
impl Send for PluginVerifyReport
impl Sync for PluginVerifyReport
impl Unpin for PluginVerifyReport
impl UnsafeUnpin for PluginVerifyReport
impl UnwindSafe for PluginVerifyReport
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