pub enum ObservationSupportStatus {
Supported,
Conditional(String),
Unsupported(String),
Unverified(String),
}Expand description
Phase-specific support under one selected execution configuration.
Variants§
Supported
The selected execution emits this point in this phase.
Conditional(String)
Supported if the stated input or execution condition holds.
Unsupported(String)
The selected execution cannot emit this observation.
Unverified(String)
Available facts do not prove capture support.
Trait Implementations§
Source§impl Clone for ObservationSupportStatus
impl Clone for ObservationSupportStatus
Source§fn clone(&self) -> ObservationSupportStatus
fn clone(&self) -> ObservationSupportStatus
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 Debug for ObservationSupportStatus
impl Debug for ObservationSupportStatus
Source§impl<'de> Deserialize<'de> for ObservationSupportStatus
impl<'de> Deserialize<'de> for ObservationSupportStatus
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
impl Eq for ObservationSupportStatus
Source§impl PartialEq for ObservationSupportStatus
impl PartialEq for ObservationSupportStatus
Source§impl Serialize for ObservationSupportStatus
impl Serialize for ObservationSupportStatus
impl StructuralPartialEq for ObservationSupportStatus
Auto Trait Implementations§
impl Freeze for ObservationSupportStatus
impl RefUnwindSafe for ObservationSupportStatus
impl Send for ObservationSupportStatus
impl Sync for ObservationSupportStatus
impl Unpin for ObservationSupportStatus
impl UnsafeUnpin for ObservationSupportStatus
impl UnwindSafe for ObservationSupportStatus
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