pub enum CoverageTrustState {
Trusted,
Partial,
Untrusted,
}Expand description
Closed trust projection for one normalized coverage state.
Variants§
Trusted
The selected producer reported complete coverage.
Partial
Some current facts are available while omissions remain explicit.
Untrusted
The selected facts are unavailable or not current enough to trust.
Trait Implementations§
Source§impl Clone for CoverageTrustState
impl Clone for CoverageTrustState
Source§fn clone(&self) -> CoverageTrustState
fn clone(&self) -> CoverageTrustState
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 CoverageTrustState
Source§impl Debug for CoverageTrustState
impl Debug for CoverageTrustState
impl Eq for CoverageTrustState
Source§impl PartialEq for CoverageTrustState
impl PartialEq for CoverageTrustState
Source§fn eq(&self, other: &CoverageTrustState) -> bool
fn eq(&self, other: &CoverageTrustState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CoverageTrustState
impl Serialize for CoverageTrustState
impl StructuralPartialEq for CoverageTrustState
Auto Trait Implementations§
impl Freeze for CoverageTrustState
impl RefUnwindSafe for CoverageTrustState
impl Send for CoverageTrustState
impl Sync for CoverageTrustState
impl Unpin for CoverageTrustState
impl UnsafeUnpin for CoverageTrustState
impl UnwindSafe for CoverageTrustState
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.