pub struct DriverInfo {
pub name: &'static str,
pub sha256: [u8; 32],
pub cves: &'static [&'static str],
pub description: &'static str,
}Expand description
A known-vulnerable or known-malicious Windows driver.
Fields§
§name: &'static str§sha256: [u8; 32]§cves: &'static [&'static str]§description: &'static strTrait Implementations§
Source§impl Clone for DriverInfo
impl Clone for DriverInfo
Source§fn clone(&self) -> DriverInfo
fn clone(&self) -> DriverInfo
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 moreAuto Trait Implementations§
impl Freeze for DriverInfo
impl RefUnwindSafe for DriverInfo
impl Send for DriverInfo
impl Sync for DriverInfo
impl Unpin for DriverInfo
impl UnsafeUnpin for DriverInfo
impl UnwindSafe for DriverInfo
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