pub struct SourceAdapterRunReport {Show 23 fields
pub ok: bool,
pub command: String,
pub adapter: String,
pub run_id: String,
pub frontier: String,
pub dry_run: bool,
pub selected_entries: usize,
pub skipped_excluded: usize,
pub fetched_records: usize,
pub unchanged_records: usize,
pub changed_records: usize,
pub artifact_proposals: usize,
pub review_note_proposals: usize,
pub proposal_ids: Vec<String>,
pub review_proposal_ids: Vec<String>,
pub applied_event_ids: Vec<String>,
pub idempotency: ImportIdempotency,
pub trusted_state_effect: String,
pub failed_records: Vec<SourceAdapterFailure>,
pub records: Vec<ClinicalTrialsRecordReport>,
pub packet_id: Option<String>,
pub packet_path: Option<PathBuf>,
pub run_path: Option<PathBuf>,
}Fields§
§ok: bool§command: String§adapter: String§run_id: String§frontier: String§dry_run: bool§selected_entries: usize§skipped_excluded: usize§fetched_records: usize§unchanged_records: usize§changed_records: usize§artifact_proposals: usize§review_note_proposals: usize§proposal_ids: Vec<String>§review_proposal_ids: Vec<String>§applied_event_ids: Vec<String>§idempotency: ImportIdempotency§trusted_state_effect: String§failed_records: Vec<SourceAdapterFailure>§records: Vec<ClinicalTrialsRecordReport>§packet_id: Option<String>§packet_path: Option<PathBuf>§run_path: Option<PathBuf>Trait Implementations§
Source§impl Clone for SourceAdapterRunReport
impl Clone for SourceAdapterRunReport
Source§fn clone(&self) -> SourceAdapterRunReport
fn clone(&self) -> SourceAdapterRunReport
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 SourceAdapterRunReport
impl Debug for SourceAdapterRunReport
Source§impl<'de> Deserialize<'de> for SourceAdapterRunReport
impl<'de> Deserialize<'de> for SourceAdapterRunReport
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 SourceAdapterRunReport
impl PartialEq for SourceAdapterRunReport
Source§fn eq(&self, other: &SourceAdapterRunReport) -> bool
fn eq(&self, other: &SourceAdapterRunReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SourceAdapterRunReport
impl Serialize for SourceAdapterRunReport
impl Eq for SourceAdapterRunReport
impl StructuralPartialEq for SourceAdapterRunReport
Auto Trait Implementations§
impl Freeze for SourceAdapterRunReport
impl RefUnwindSafe for SourceAdapterRunReport
impl Send for SourceAdapterRunReport
impl Sync for SourceAdapterRunReport
impl Unpin for SourceAdapterRunReport
impl UnsafeUnpin for SourceAdapterRunReport
impl UnwindSafe for SourceAdapterRunReport
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.