[−][src]Struct s3_algo::RequestReport
Result of a single S3 request.
Fields
seq: usizeThe number of this request in a series of multiple requests (0 if not applicable)
bytes: u64Size in bytes of any file or object involved in this request (0 if not applicable)
total_time: DurationThe total time including all retries
success_time: DurationThe time of the successful request
attempts: usizeNumber of attempts. A value of 1 means no retries - success on first attempt.
est: f64Estimated bytes/ms upload speed at the initiation of the upload of this file. Useful for debugging the upload algorithm and not much more
Trait Implementations
impl Clone for RequestReport[src]
fn clone(&self) -> RequestReport[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for RequestReport[src]
impl Debug for RequestReport[src]
Auto Trait Implementations
impl RefUnwindSafe for RequestReport
impl Send for RequestReport
impl Sync for RequestReport
impl Unpin for RequestReport
impl UnwindSafe for RequestReport
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> Sealed<T> for T where
T: ?Sized,
T: ?Sized,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,