pub struct DataTransferProgress {
pub current_rate_in_mega_bytes_per_second: Option<f64>,
pub data_transferred_in_mega_bytes: Option<i64>,
pub elapsed_time_in_seconds: Option<i64>,
pub estimated_time_to_completion_in_seconds: Option<i64>,
pub status: Option<String>,
pub total_data_in_mega_bytes: Option<i64>,
}
Expand description
Describes the status of a cluster while it is in the process of resizing with an incremental resize.
Fields§
§current_rate_in_mega_bytes_per_second: Option<f64>
Describes the data transfer rate in MB's per second.
data_transferred_in_mega_bytes: Option<i64>
Describes the total amount of data that has been transfered in MB's.
elapsed_time_in_seconds: Option<i64>
Describes the number of seconds that have elapsed during the data transfer.
estimated_time_to_completion_in_seconds: Option<i64>
Describes the estimated number of seconds remaining to complete the transfer.
status: Option<String>
Describes the status of the cluster. While the transfer is in progress the status is transferringdata
.
total_data_in_mega_bytes: Option<i64>
Describes the total amount of data to be transfered in megabytes.
Trait Implementations§
Source§impl Clone for DataTransferProgress
impl Clone for DataTransferProgress
Source§fn clone(&self) -> DataTransferProgress
fn clone(&self) -> DataTransferProgress
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 DataTransferProgress
impl Debug for DataTransferProgress
Source§impl Default for DataTransferProgress
impl Default for DataTransferProgress
Source§fn default() -> DataTransferProgress
fn default() -> DataTransferProgress
Returns the “default value” for a type. Read more
Source§impl PartialEq for DataTransferProgress
impl PartialEq for DataTransferProgress
impl StructuralPartialEq for DataTransferProgress
Auto Trait Implementations§
impl Freeze for DataTransferProgress
impl RefUnwindSafe for DataTransferProgress
impl Send for DataTransferProgress
impl Sync for DataTransferProgress
impl Unpin for DataTransferProgress
impl UnwindSafe for DataTransferProgress
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