pub enum RuntimeInspection {
Found {
schema: String,
observation: Box<RuntimeObservation>,
},
NotFound {
schema: String,
unit_id: String,
last_generation: Option<u64>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeInspection
impl Clone for RuntimeInspection
Source§fn clone(&self) -> RuntimeInspection
fn clone(&self) -> RuntimeInspection
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 RuntimeInspection
impl Debug for RuntimeInspection
Source§impl<'de> Deserialize<'de> for RuntimeInspection
impl<'de> Deserialize<'de> for RuntimeInspection
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 RuntimeInspection
Source§impl PartialEq for RuntimeInspection
impl PartialEq for RuntimeInspection
Source§impl Serialize for RuntimeInspection
impl Serialize for RuntimeInspection
impl StructuralPartialEq for RuntimeInspection
Auto Trait Implementations§
impl Freeze for RuntimeInspection
impl RefUnwindSafe for RuntimeInspection
impl Send for RuntimeInspection
impl Sync for RuntimeInspection
impl Unpin for RuntimeInspection
impl UnsafeUnpin for RuntimeInspection
impl UnwindSafe for RuntimeInspection
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