pub enum ProcessingStatus {
Pending,
Complete,
Failed,
}
Expand description
pending
files have not yet been processed, while complete
means results from the SARIF have been stored. failed
files have either not been processed at all, or could only be partially processed.
Variants§
Trait Implementations§
Source§impl Clone for ProcessingStatus
impl Clone for ProcessingStatus
Source§fn clone(&self) -> ProcessingStatus
fn clone(&self) -> ProcessingStatus
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 ProcessingStatus
impl Debug for ProcessingStatus
Source§impl Default for ProcessingStatus
impl Default for ProcessingStatus
Source§fn default() -> ProcessingStatus
fn default() -> ProcessingStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProcessingStatus
impl<'de> Deserialize<'de> for ProcessingStatus
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 Hash for ProcessingStatus
impl Hash for ProcessingStatus
Source§impl Ord for ProcessingStatus
impl Ord for ProcessingStatus
Source§fn cmp(&self, other: &ProcessingStatus) -> Ordering
fn cmp(&self, other: &ProcessingStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ProcessingStatus
impl PartialEq for ProcessingStatus
Source§impl PartialOrd for ProcessingStatus
impl PartialOrd for ProcessingStatus
Source§impl Serialize for ProcessingStatus
impl Serialize for ProcessingStatus
impl Copy for ProcessingStatus
impl Eq for ProcessingStatus
impl StructuralPartialEq for ProcessingStatus
Auto Trait Implementations§
impl Freeze for ProcessingStatus
impl RefUnwindSafe for ProcessingStatus
impl Send for ProcessingStatus
impl Sync for ProcessingStatus
impl Unpin for ProcessingStatus
impl UnwindSafe for ProcessingStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.