pub enum SourceObservationStateV1<T> {
Observed(T),
ProvenAbsent,
Unavailable(SourceUnavailableReasonV1),
}Expand description
Availability of one scalar source observation.
Variants§
Observed(T)
The value was observed at the documented provenance boundary.
ProvenAbsent
Complete evidence proves that this format/source has no value.
The value cannot be established.
Trait Implementations§
Source§impl<T: Clone> Clone for SourceObservationStateV1<T>
impl<T: Clone> Clone for SourceObservationStateV1<T>
Source§fn clone(&self) -> SourceObservationStateV1<T>
fn clone(&self) -> SourceObservationStateV1<T>
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 moreSource§impl<T: Debug> Debug for SourceObservationStateV1<T>
impl<T: Debug> Debug for SourceObservationStateV1<T>
Source§impl<T: PartialEq> PartialEq for SourceObservationStateV1<T>
impl<T: PartialEq> PartialEq for SourceObservationStateV1<T>
impl<T: PartialEq> StructuralPartialEq for SourceObservationStateV1<T>
Auto Trait Implementations§
impl<T> Freeze for SourceObservationStateV1<T>where
T: Freeze,
impl<T> RefUnwindSafe for SourceObservationStateV1<T>where
T: RefUnwindSafe,
impl<T> Send for SourceObservationStateV1<T>where
T: Send,
impl<T> Sync for SourceObservationStateV1<T>where
T: Sync,
impl<T> Unpin for SourceObservationStateV1<T>where
T: Unpin,
impl<T> UnsafeUnpin for SourceObservationStateV1<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for SourceObservationStateV1<T>where
T: UnwindSafe,
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