pub enum BadFileSource {
MalwareBazaar,
VirusShare,
Malshare,
AlienVaultOtx,
Custom(&'static str),
}Expand description
Source database a known-bad hash came from.
Variants§
Trait Implementations§
Source§impl Clone for BadFileSource
impl Clone for BadFileSource
Source§fn clone(&self) -> BadFileSource
fn clone(&self) -> BadFileSource
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 BadFileSource
impl Debug for BadFileSource
impl Eq for BadFileSource
Source§impl PartialEq for BadFileSource
impl PartialEq for BadFileSource
Source§fn eq(&self, other: &BadFileSource) -> bool
fn eq(&self, other: &BadFileSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BadFileSource
Auto Trait Implementations§
impl Freeze for BadFileSource
impl RefUnwindSafe for BadFileSource
impl Send for BadFileSource
impl Sync for BadFileSource
impl Unpin for BadFileSource
impl UnsafeUnpin for BadFileSource
impl UnwindSafe for BadFileSource
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