pub struct BackupUpgradeCreateDynamicCloseRequest {
pub chunk_count: i64,
pub csum: String,
pub size: i64,
pub wid: i32,
}Fields§
§chunk_count: i64Chunk count. This is used to verify that the server got all chunks.
csum: StringDigest list checksum.
size: i64File size. This is used to verify that the server got all data.
wid: i32Dynamic writer ID.
Implementations§
Trait Implementations§
Source§impl Clone for BackupUpgradeCreateDynamicCloseRequest
impl Clone for BackupUpgradeCreateDynamicCloseRequest
Source§fn clone(&self) -> BackupUpgradeCreateDynamicCloseRequest
fn clone(&self) -> BackupUpgradeCreateDynamicCloseRequest
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 Default for BackupUpgradeCreateDynamicCloseRequest
impl Default for BackupUpgradeCreateDynamicCloseRequest
Source§fn default() -> BackupUpgradeCreateDynamicCloseRequest
fn default() -> BackupUpgradeCreateDynamicCloseRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackupUpgradeCreateDynamicCloseRequest
impl<'de> Deserialize<'de> for BackupUpgradeCreateDynamicCloseRequest
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 BackupUpgradeCreateDynamicCloseRequest
impl PartialEq for BackupUpgradeCreateDynamicCloseRequest
Source§fn eq(&self, other: &BackupUpgradeCreateDynamicCloseRequest) -> bool
fn eq(&self, other: &BackupUpgradeCreateDynamicCloseRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BackupUpgradeCreateDynamicCloseRequest
Auto Trait Implementations§
impl Freeze for BackupUpgradeCreateDynamicCloseRequest
impl RefUnwindSafe for BackupUpgradeCreateDynamicCloseRequest
impl Send for BackupUpgradeCreateDynamicCloseRequest
impl Sync for BackupUpgradeCreateDynamicCloseRequest
impl Unpin for BackupUpgradeCreateDynamicCloseRequest
impl UnsafeUnpin for BackupUpgradeCreateDynamicCloseRequest
impl UnwindSafe for BackupUpgradeCreateDynamicCloseRequest
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