pub struct Status {
pub id: Option<UploadId>,
pub part: Option<PartNumber>,
pub elapsed: Duration,
pub items: u64,
pub parts: u64,
pub bytes: u64,
pub should_complete: bool,
pub part_bytes: u64,
pub should_upload: bool,
}Expand description
Value returned by the EncodedUpload writer.
Fields§
§id: Option<UploadId>The ID of the upload being written to.
part: Option<PartNumber>The part number of the last sent.
elapsed: DurationTotal uptime of the upload.
items: u64Current count of items written to the upload.
parts: u64Current number of parts in the upload.
bytes: u64Current size in bytes of the upload.
should_complete: boolWhether the upload should be completed according to configuration.
part_bytes: u64Current size in bytes of the part.
should_upload: boolWhether the part should be uploaded according to configuration.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.