pub struct DagDbImportResponse {Show 13 fields
pub schema_version: String,
pub operation_id: String,
pub tenant_id: String,
pub namespace: String,
pub idempotency_key: String,
pub db_set_version: String,
pub import_status: String,
pub import_receipt_id: Option<String>,
pub source_hash: String,
pub imported_record_count: u32,
pub receipt_path: Option<String>,
pub non_claims: Vec<String>,
pub idempotency_status: Option<String>,
}Expand description
Runtime import response.
Fields§
§schema_version: StringStable wire-contract version (dagdb_import_response_v1).
operation_id: String§tenant_id: String§namespace: String§idempotency_key: String§db_set_version: String§import_status: String§import_receipt_id: Option<String>§source_hash: String§imported_record_count: u32§receipt_path: Option<String>§non_claims: Vec<String>§idempotency_status: Option<String>Trait Implementations§
Source§impl Clone for DagDbImportResponse
impl Clone for DagDbImportResponse
Source§fn clone(&self) -> DagDbImportResponse
fn clone(&self) -> DagDbImportResponse
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 DagDbImportResponse
impl Debug for DagDbImportResponse
Source§impl<'de> Deserialize<'de> for DagDbImportResponse
impl<'de> Deserialize<'de> for DagDbImportResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbImportResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbImportResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DagDbImportResponse
Source§impl PartialEq for DagDbImportResponse
impl PartialEq for DagDbImportResponse
Source§fn eq(&self, other: &DagDbImportResponse) -> bool
fn eq(&self, other: &DagDbImportResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DagDbImportResponse
impl Serialize for DagDbImportResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for DagDbImportResponse
Auto Trait Implementations§
impl Freeze for DagDbImportResponse
impl RefUnwindSafe for DagDbImportResponse
impl Send for DagDbImportResponse
impl Sync for DagDbImportResponse
impl Unpin for DagDbImportResponse
impl UnsafeUnpin for DagDbImportResponse
impl UnwindSafe for DagDbImportResponse
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