pub enum ReferencePlatformStatus {
Admitted,
Unavailable,
DocumentationOnly,
SkippedWithReason,
InadmissibleUnpinned,
PendingExternalReceipt,
}Expand description
The admission status of a vendor/platform reference (T16.5) — never Admitted by assumption. A real
platform row reaches Admitted only via an admitted receipt that passes the rules; everything else is
an honest non-admitted state.
Variants§
Admitted
DocumentationOnly
SkippedWithReason
InadmissibleUnpinned
A binary exists but cannot be identified sufficiently to admit (the inadmissibility disposition).
PendingExternalReceipt
A receipt is expected from the external lab but has not been admitted yet.
Implementations§
Trait Implementations§
Source§impl Clone for ReferencePlatformStatus
impl Clone for ReferencePlatformStatus
Source§fn clone(&self) -> ReferencePlatformStatus
fn clone(&self) -> ReferencePlatformStatus
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 moreimpl Copy for ReferencePlatformStatus
Source§impl Debug for ReferencePlatformStatus
impl Debug for ReferencePlatformStatus
impl Eq for ReferencePlatformStatus
Source§impl PartialEq for ReferencePlatformStatus
impl PartialEq for ReferencePlatformStatus
Source§fn eq(&self, other: &ReferencePlatformStatus) -> bool
fn eq(&self, other: &ReferencePlatformStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReferencePlatformStatus
Auto Trait Implementations§
impl Freeze for ReferencePlatformStatus
impl RefUnwindSafe for ReferencePlatformStatus
impl Send for ReferencePlatformStatus
impl Sync for ReferencePlatformStatus
impl Unpin for ReferencePlatformStatus
impl UnsafeUnpin for ReferencePlatformStatus
impl UnwindSafe for ReferencePlatformStatus
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