pub struct UploadResult {
pub bytes_uploaded: u64,
pub file_size: u64,
pub checksum: Option<String>,
pub elapsed_time: Duration,
}Fields§
§bytes_uploaded: u64§file_size: u64§checksum: Option<String>§elapsed_time: DurationTrait Implementations§
Source§impl Debug for UploadResult
impl Debug for UploadResult
Source§impl Default for UploadResult
impl Default for UploadResult
Source§fn default() -> UploadResult
fn default() -> UploadResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UploadResult
impl RefUnwindSafe for UploadResult
impl Send for UploadResult
impl Sync for UploadResult
impl Unpin for UploadResult
impl UnwindSafe for UploadResult
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