pub struct BridgeReportSummary {
pub relation: String,
pub edge_count: usize,
pub inferred: bool,
pub read_only: bool,
pub source_system_counts: Vec<NamedCount>,
pub confidence_range: Option<ConfidenceRange>,
}Fields§
§relation: String§edge_count: usize§inferred: bool§read_only: bool§source_system_counts: Vec<NamedCount>§confidence_range: Option<ConfidenceRange>Trait Implementations§
Source§impl Clone for BridgeReportSummary
impl Clone for BridgeReportSummary
Source§fn clone(&self) -> BridgeReportSummary
fn clone(&self) -> BridgeReportSummary
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 BridgeReportSummary
impl Debug for BridgeReportSummary
Source§impl<'de> Deserialize<'de> for BridgeReportSummary
impl<'de> Deserialize<'de> for BridgeReportSummary
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
Source§impl PartialEq for BridgeReportSummary
impl PartialEq for BridgeReportSummary
Source§fn eq(&self, other: &BridgeReportSummary) -> bool
fn eq(&self, other: &BridgeReportSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BridgeReportSummary
impl Serialize for BridgeReportSummary
impl StructuralPartialEq for BridgeReportSummary
Auto Trait Implementations§
impl Freeze for BridgeReportSummary
impl RefUnwindSafe for BridgeReportSummary
impl Send for BridgeReportSummary
impl Sync for BridgeReportSummary
impl Unpin for BridgeReportSummary
impl UnsafeUnpin for BridgeReportSummary
impl UnwindSafe for BridgeReportSummary
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