pub struct FileAddedResult {
pub file_id: u64,
pub is_new: bool,
}Expand description
Data returned when adding a new sample
Fields§
§file_id: u64File ID
is_new: boolWhether the file was added as a new entry. This is false if the sample was already known to Malware DB.
Auto Trait Implementations§
impl Freeze for FileAddedResult
impl RefUnwindSafe for FileAddedResult
impl Send for FileAddedResult
impl Sync for FileAddedResult
impl Unpin for FileAddedResult
impl UnwindSafe for FileAddedResult
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