Struct aws_sdk_s3::types::builders::ProgressBuilder
source · #[non_exhaustive]pub struct ProgressBuilder { /* private fields */ }
Expand description
A builder for Progress
.
Implementations§
source§impl ProgressBuilder
impl ProgressBuilder
sourcepub fn bytes_scanned(self, input: i64) -> Self
pub fn bytes_scanned(self, input: i64) -> Self
The current number of object bytes scanned.
sourcepub fn set_bytes_scanned(self, input: Option<i64>) -> Self
pub fn set_bytes_scanned(self, input: Option<i64>) -> Self
The current number of object bytes scanned.
sourcepub fn get_bytes_scanned(&self) -> &Option<i64>
pub fn get_bytes_scanned(&self) -> &Option<i64>
The current number of object bytes scanned.
sourcepub fn bytes_processed(self, input: i64) -> Self
pub fn bytes_processed(self, input: i64) -> Self
The current number of uncompressed object bytes processed.
sourcepub fn set_bytes_processed(self, input: Option<i64>) -> Self
pub fn set_bytes_processed(self, input: Option<i64>) -> Self
The current number of uncompressed object bytes processed.
sourcepub fn get_bytes_processed(&self) -> &Option<i64>
pub fn get_bytes_processed(&self) -> &Option<i64>
The current number of uncompressed object bytes processed.
sourcepub fn bytes_returned(self, input: i64) -> Self
pub fn bytes_returned(self, input: i64) -> Self
The current number of bytes of records payload data returned.
sourcepub fn set_bytes_returned(self, input: Option<i64>) -> Self
pub fn set_bytes_returned(self, input: Option<i64>) -> Self
The current number of bytes of records payload data returned.
sourcepub fn get_bytes_returned(&self) -> &Option<i64>
pub fn get_bytes_returned(&self) -> &Option<i64>
The current number of bytes of records payload data returned.
Trait Implementations§
source§impl Clone for ProgressBuilder
impl Clone for ProgressBuilder
source§fn clone(&self) -> ProgressBuilder
fn clone(&self) -> ProgressBuilder
Returns a copy 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 ProgressBuilder
impl Debug for ProgressBuilder
source§impl Default for ProgressBuilder
impl Default for ProgressBuilder
source§fn default() -> ProgressBuilder
fn default() -> ProgressBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ProgressBuilder
impl PartialEq for ProgressBuilder
source§fn eq(&self, other: &ProgressBuilder) -> bool
fn eq(&self, other: &ProgressBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ProgressBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ProgressBuilder
impl Send for ProgressBuilder
impl Sync for ProgressBuilder
impl Unpin for ProgressBuilder
impl UnwindSafe for ProgressBuilder
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