pub struct SynthesisReport {
pub dry_run: bool,
pub scanned_records: u64,
pub eligible_records: u64,
pub proposed_records: u64,
pub persisted_records: u64,
pub lineage_links_created: u64,
pub proposals: Vec<SynthesisProposal>,
}Fields§
§dry_run: bool§scanned_records: u64§eligible_records: u64§proposed_records: u64§persisted_records: u64§lineage_links_created: u64§proposals: Vec<SynthesisProposal>Trait Implementations§
Source§impl Clone for SynthesisReport
impl Clone for SynthesisReport
Source§fn clone(&self) -> SynthesisReport
fn clone(&self) -> SynthesisReport
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 SynthesisReport
impl Debug for SynthesisReport
Source§impl<'de> Deserialize<'de> for SynthesisReport
impl<'de> Deserialize<'de> for SynthesisReport
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 SynthesisReport
impl PartialEq for SynthesisReport
Source§fn eq(&self, other: &SynthesisReport) -> bool
fn eq(&self, other: &SynthesisReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SynthesisReport
impl Serialize for SynthesisReport
impl StructuralPartialEq for SynthesisReport
Auto Trait Implementations§
impl Freeze for SynthesisReport
impl RefUnwindSafe for SynthesisReport
impl Send for SynthesisReport
impl Sync for SynthesisReport
impl Unpin for SynthesisReport
impl UnsafeUnpin for SynthesisReport
impl UnwindSafe for SynthesisReport
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