#[non_exhaustive]pub struct ScanExplainReport {
pub schema_version: u32,
pub pattern_set_id: String,
pub extracted_factors: Vec<ScanExplainFactor>,
pub selected_engines: Vec<ScanExplainEngine>,
pub rejected_engines: Vec<ScanExplainRejectedEngine>,
pub verifier_fragments: Vec<ScanExplainVerifierFragment>,
pub route_evidence: ScanExplainRouteEvidence,
pub streaming_state_bytes: u64,
pub table_bytes: u64,
pub baseline_id: String,
pub unsupported_features: Vec<UnsupportedScanFeature>,
pub artifact_links: Vec<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.schema_version: u32§pattern_set_id: String§extracted_factors: Vec<ScanExplainFactor>§selected_engines: Vec<ScanExplainEngine>§rejected_engines: Vec<ScanExplainRejectedEngine>§verifier_fragments: Vec<ScanExplainVerifierFragment>§route_evidence: ScanExplainRouteEvidence§streaming_state_bytes: u64§table_bytes: u64§baseline_id: String§unsupported_features: Vec<UnsupportedScanFeature>§artifact_links: Vec<String>Implementations§
Source§impl ScanExplainReport
impl ScanExplainReport
pub fn is_complete(&self) -> bool
Trait Implementations§
Source§impl Clone for ScanExplainReport
impl Clone for ScanExplainReport
Source§fn clone(&self) -> ScanExplainReport
fn clone(&self) -> ScanExplainReport
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 ScanExplainReport
impl Debug for ScanExplainReport
impl Eq for ScanExplainReport
Source§impl PartialEq for ScanExplainReport
impl PartialEq for ScanExplainReport
Source§impl Serialize for ScanExplainReport
impl Serialize for ScanExplainReport
impl StructuralPartialEq for ScanExplainReport
Auto Trait Implementations§
impl Freeze for ScanExplainReport
impl RefUnwindSafe for ScanExplainReport
impl Send for ScanExplainReport
impl Sync for ScanExplainReport
impl Unpin for ScanExplainReport
impl UnsafeUnpin for ScanExplainReport
impl UnwindSafe for ScanExplainReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.