pub struct CommitChunkedUploadResponse {
pub success: bool,
pub file_id: String,
pub manifest_id: String,
pub version: i32,
pub total_size: i64,
pub physical_size: Option<i64>,
pub deduplication_pct: Option<f64>,
pub total_blocks: Option<i32>,
pub new_blocks: Option<i32>,
pub deduplicated_blocks: Option<i32>,
}Fields§
§success: bool§file_id: String§manifest_id: String§version: i32§total_size: i64§physical_size: Option<i64>§deduplication_pct: Option<f64>§total_blocks: Option<i32>§new_blocks: Option<i32>§deduplicated_blocks: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for CommitChunkedUploadResponse
impl Clone for CommitChunkedUploadResponse
Source§fn clone(&self) -> CommitChunkedUploadResponse
fn clone(&self) -> CommitChunkedUploadResponse
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 CommitChunkedUploadResponse
impl Debug for CommitChunkedUploadResponse
Source§impl Default for CommitChunkedUploadResponse
impl Default for CommitChunkedUploadResponse
Source§fn default() -> CommitChunkedUploadResponse
fn default() -> CommitChunkedUploadResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommitChunkedUploadResponse
impl<'de> Deserialize<'de> for CommitChunkedUploadResponse
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 CommitChunkedUploadResponse
impl PartialEq for CommitChunkedUploadResponse
Source§fn eq(&self, other: &CommitChunkedUploadResponse) -> bool
fn eq(&self, other: &CommitChunkedUploadResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CommitChunkedUploadResponse
Auto Trait Implementations§
impl Freeze for CommitChunkedUploadResponse
impl RefUnwindSafe for CommitChunkedUploadResponse
impl Send for CommitChunkedUploadResponse
impl Sync for CommitChunkedUploadResponse
impl Unpin for CommitChunkedUploadResponse
impl UnsafeUnpin for CommitChunkedUploadResponse
impl UnwindSafe for CommitChunkedUploadResponse
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