pub struct SandboxScan {
pub scan_id: u64,
pub scan_type: String,
pub status: String,
pub created: DateTime<Utc>,
pub modified: DateTime<Utc>,
pub scan_url: Option<String>,
pub results_ready: bool,
pub engine_version: Option<String>,
}Expand description
Represents a scan within a sandbox
Fields§
§scan_id: u64§scan_type: String§status: String§created: DateTime<Utc>§modified: DateTime<Utc>§scan_url: Option<String>§results_ready: bool§engine_version: Option<String>Trait Implementations§
Source§impl Clone for SandboxScan
impl Clone for SandboxScan
Source§fn clone(&self) -> SandboxScan
fn clone(&self) -> SandboxScan
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 SandboxScan
impl Debug for SandboxScan
Source§impl<'de> Deserialize<'de> for SandboxScan
impl<'de> Deserialize<'de> for SandboxScan
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
Auto Trait Implementations§
impl Freeze for SandboxScan
impl RefUnwindSafe for SandboxScan
impl Send for SandboxScan
impl Sync for SandboxScan
impl Unpin for SandboxScan
impl UnwindSafe for SandboxScan
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