pub enum VirusScanStatus {
Pending,
Passed,
Failed,
Unsupported,
}Expand description
Virus-scan outcome used before documents may become staff-visible evidence.
Variants§
Pending
Scan request is pending, so the file remains blocked from trusted evidence use.
Passed
Virus scan passed, allowing the document to continue toward extraction and review.
Failed
Virus scan failed, keeping the document quarantined from staff and automation.
Unsupported
File type cannot be scanned by the supported path and needs manual handling.
Trait Implementations§
Source§impl Clone for VirusScanStatus
impl Clone for VirusScanStatus
Source§fn clone(&self) -> VirusScanStatus
fn clone(&self) -> VirusScanStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 VirusScanStatus
impl Debug for VirusScanStatus
Source§impl<'de> Deserialize<'de> for VirusScanStatus
impl<'de> Deserialize<'de> for VirusScanStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VirusScanStatus
impl PartialEq for VirusScanStatus
Source§impl Serialize for VirusScanStatus
impl Serialize for VirusScanStatus
impl Copy for VirusScanStatus
impl Eq for VirusScanStatus
impl StructuralPartialEq for VirusScanStatus
Auto Trait Implementations§
impl Freeze for VirusScanStatus
impl RefUnwindSafe for VirusScanStatus
impl Send for VirusScanStatus
impl Sync for VirusScanStatus
impl Unpin for VirusScanStatus
impl UnsafeUnpin for VirusScanStatus
impl UnwindSafe for VirusScanStatus
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