pub struct ObservationSupportReport {
pub schema_version: u32,
pub points: Vec<ObservationSupport>,
pub capture: CaptureCapabilities,
}Expand description
Versioned per-path support facts, separate from the logical architecture.
Fields§
§schema_version: u32Version of the discovery wire schema.
points: Vec<ObservationSupport>Observation points in deterministic path order.
capture: CaptureCapabilitiesBounded transformation mechanisms and their execution/storage conditions.
Trait Implementations§
Source§impl Clone for ObservationSupportReport
impl Clone for ObservationSupportReport
Source§fn clone(&self) -> ObservationSupportReport
fn clone(&self) -> ObservationSupportReport
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 ObservationSupportReport
impl Debug for ObservationSupportReport
Source§impl<'de> Deserialize<'de> for ObservationSupportReport
impl<'de> Deserialize<'de> for ObservationSupportReport
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 ObservationSupportReport
Source§impl PartialEq for ObservationSupportReport
impl PartialEq for ObservationSupportReport
Source§impl Serialize for ObservationSupportReport
impl Serialize for ObservationSupportReport
impl StructuralPartialEq for ObservationSupportReport
Auto Trait Implementations§
impl Freeze for ObservationSupportReport
impl RefUnwindSafe for ObservationSupportReport
impl Send for ObservationSupportReport
impl Sync for ObservationSupportReport
impl Unpin for ObservationSupportReport
impl UnsafeUnpin for ObservationSupportReport
impl UnwindSafe for ObservationSupportReport
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