pub struct MDBConfig {
pub name: String,
pub compression: bool,
pub send_samples_to_vt: bool,
pub keep_unknown_files: bool,
/* private fields */
}
Expand description
Malware DB configuration which is stored in the database
Fields§
§name: String
The name of this instance of Malware DB
compression: bool
Whether samples are stored compressed
send_samples_to_vt: bool
Whether Malware DB can send samples to Virus Total
keep_unknown_files: bool
If Malware DB should keep unknown files
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MDBConfig
impl RefUnwindSafe for MDBConfig
impl Send for MDBConfig
impl Sync for MDBConfig
impl Unpin for MDBConfig
impl UnwindSafe for MDBConfig
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