pub struct CaptureDiscovery {
pub artifact_identity: String,
pub catalog: ObservationCatalog,
pub support: ObservationSupportReport,
}Expand description
Retained discovery and exact source identity of the loaded session. Admission uses these facts rather than accepting an unrelated caller-supplied catalog.
Fields§
§artifact_identity: StringContent-exact identity of the prepared physical source graph.
catalog: ObservationCatalogArchitecture-declared points retained from preparation.
support: ObservationSupportReportSupport for the execution actually realized by the session.
Trait Implementations§
Source§impl Clone for CaptureDiscovery
impl Clone for CaptureDiscovery
Source§fn clone(&self) -> CaptureDiscovery
fn clone(&self) -> CaptureDiscovery
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 CaptureDiscovery
impl Debug for CaptureDiscovery
Source§impl<'de> Deserialize<'de> for CaptureDiscovery
impl<'de> Deserialize<'de> for CaptureDiscovery
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 CaptureDiscovery
Source§impl PartialEq for CaptureDiscovery
impl PartialEq for CaptureDiscovery
Source§impl Serialize for CaptureDiscovery
impl Serialize for CaptureDiscovery
impl StructuralPartialEq for CaptureDiscovery
Auto Trait Implementations§
impl Freeze for CaptureDiscovery
impl RefUnwindSafe for CaptureDiscovery
impl Send for CaptureDiscovery
impl Sync for CaptureDiscovery
impl Unpin for CaptureDiscovery
impl UnsafeUnpin for CaptureDiscovery
impl UnwindSafe for CaptureDiscovery
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