pub struct ResumableUploadStatus {
pub current: u64,
pub total: u64,
pub finalized: bool,
pub metadata: Option<ObjectMetadata>,
}Fields§
§current: u64§total: u64§finalized: bool§metadata: Option<ObjectMetadata>Implementations§
Trait Implementations§
Source§impl Clone for ResumableUploadStatus
impl Clone for ResumableUploadStatus
Source§fn clone(&self) -> ResumableUploadStatus
fn clone(&self) -> ResumableUploadStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 ResumableUploadStatus
impl Debug for ResumableUploadStatus
Source§impl Default for ResumableUploadStatus
impl Default for ResumableUploadStatus
Source§fn default() -> ResumableUploadStatus
fn default() -> ResumableUploadStatus
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResumableUploadStatus
impl RefUnwindSafe for ResumableUploadStatus
impl Send for ResumableUploadStatus
impl Sync for ResumableUploadStatus
impl Unpin for ResumableUploadStatus
impl UnwindSafe for ResumableUploadStatus
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