pub struct DagDbExportResponse {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 export_status: String,
pub export_artifact_id: Option<String>,
pub export_hash: Option<String>,
pub exported_record_count: u32,
pub report_path: Option<String>,
pub non_claims: Vec<String>,
pub idempotency_status: Option<String>,
}Expand description
Runtime export response.
Fields§
§schema_version: StringStable wire-contract version (dagdb_export_response_v1).
operation_id: String§tenant_id: String§namespace: String§idempotency_key: String§db_set_version: String§export_status: String§export_artifact_id: Option<String>§export_hash: Option<String>§exported_record_count: u32§report_path: Option<String>§non_claims: Vec<String>§idempotency_status: Option<String>Trait Implementations§
Source§impl Clone for DagDbExportResponse
impl Clone for DagDbExportResponse
Source§fn clone(&self) -> DagDbExportResponse
fn clone(&self) -> DagDbExportResponse
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 DagDbExportResponse
impl Debug for DagDbExportResponse
Source§impl<'de> Deserialize<'de> for DagDbExportResponse
impl<'de> Deserialize<'de> for DagDbExportResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbExportResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DagDbExportResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DagDbExportResponse
Source§impl PartialEq for DagDbExportResponse
impl PartialEq for DagDbExportResponse
Source§fn eq(&self, other: &DagDbExportResponse) -> bool
fn eq(&self, other: &DagDbExportResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DagDbExportResponse
impl Serialize for DagDbExportResponse
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 DagDbExportResponse
Auto Trait Implementations§
impl Freeze for DagDbExportResponse
impl RefUnwindSafe for DagDbExportResponse
impl Send for DagDbExportResponse
impl Sync for DagDbExportResponse
impl Unpin for DagDbExportResponse
impl UnsafeUnpin for DagDbExportResponse
impl UnwindSafe for DagDbExportResponse
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