pub struct SnapshotShipReport {
pub target_url: String,
pub exported_records: u64,
pub imported_records: u64,
pub skipped_records: u64,
pub dry_run: bool,
pub compatible_package: bool,
pub remote_status: u16,
pub remote_snapshot_id: Option<String>,
}Fields§
§target_url: String§exported_records: u64§imported_records: u64§skipped_records: u64§dry_run: bool§compatible_package: bool§remote_status: u16§remote_snapshot_id: Option<String>Trait Implementations§
Source§impl Clone for SnapshotShipReport
impl Clone for SnapshotShipReport
Source§fn clone(&self) -> SnapshotShipReport
fn clone(&self) -> SnapshotShipReport
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 SnapshotShipReport
impl Debug for SnapshotShipReport
Source§impl<'de> Deserialize<'de> for SnapshotShipReport
impl<'de> Deserialize<'de> for SnapshotShipReport
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
impl Eq for SnapshotShipReport
Source§impl PartialEq for SnapshotShipReport
impl PartialEq for SnapshotShipReport
Source§fn eq(&self, other: &SnapshotShipReport) -> bool
fn eq(&self, other: &SnapshotShipReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SnapshotShipReport
impl Serialize for SnapshotShipReport
impl StructuralPartialEq for SnapshotShipReport
Auto Trait Implementations§
impl Freeze for SnapshotShipReport
impl RefUnwindSafe for SnapshotShipReport
impl Send for SnapshotShipReport
impl Sync for SnapshotShipReport
impl Unpin for SnapshotShipReport
impl UnsafeUnpin for SnapshotShipReport
impl UnwindSafe for SnapshotShipReport
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