pub struct ProjectionImportResult {
pub source_envelope_id: String,
pub status: String,
pub record_count: usize,
pub was_duplicate: bool,
}Expand description
Result of a projection batch import (V11+).
Fields§
§source_envelope_id: StringSource envelope ID.
status: StringImport status: “complete” or “already_imported”.
record_count: usizeNumber of records in the batch.
was_duplicate: boolWhether this was a duplicate (idempotent no-op).
Trait Implementations§
Source§impl Clone for ProjectionImportResult
impl Clone for ProjectionImportResult
Source§fn clone(&self) -> ProjectionImportResult
fn clone(&self) -> ProjectionImportResult
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 ProjectionImportResult
impl Debug for ProjectionImportResult
Source§impl<'de> Deserialize<'de> for ProjectionImportResult
impl<'de> Deserialize<'de> for ProjectionImportResult
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
Auto Trait Implementations§
impl Freeze for ProjectionImportResult
impl RefUnwindSafe for ProjectionImportResult
impl Send for ProjectionImportResult
impl Sync for ProjectionImportResult
impl Unpin for ProjectionImportResult
impl UnsafeUnpin for ProjectionImportResult
impl UnwindSafe for ProjectionImportResult
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