#[non_exhaustive]pub enum NativeFieldCoveragePlane {
InputObservation,
OutputIntent,
}Expand description
The contract plane represented by one strict coverage-ledger row.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InputObservation
A native Libpod inspection observation accepted by the M2 decoder.
OutputIntent
A caller-declared deployment field classified by planning and rendering contracts.
Trait Implementations§
Source§impl Clone for NativeFieldCoveragePlane
impl Clone for NativeFieldCoveragePlane
Source§fn clone(&self) -> NativeFieldCoveragePlane
fn clone(&self) -> NativeFieldCoveragePlane
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 NativeFieldCoveragePlane
Source§impl Debug for NativeFieldCoveragePlane
impl Debug for NativeFieldCoveragePlane
Source§impl<'de> Deserialize<'de> for NativeFieldCoveragePlane
impl<'de> Deserialize<'de> for NativeFieldCoveragePlane
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 NativeFieldCoveragePlane
Source§impl PartialEq for NativeFieldCoveragePlane
impl PartialEq for NativeFieldCoveragePlane
impl StructuralPartialEq for NativeFieldCoveragePlane
Auto Trait Implementations§
impl Freeze for NativeFieldCoveragePlane
impl RefUnwindSafe for NativeFieldCoveragePlane
impl Send for NativeFieldCoveragePlane
impl Sync for NativeFieldCoveragePlane
impl Unpin for NativeFieldCoveragePlane
impl UnsafeUnpin for NativeFieldCoveragePlane
impl UnwindSafe for NativeFieldCoveragePlane
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