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