[][src]Struct rusoto_redshift::DataTransferProgress

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>,
}

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

impl Clone for DataTransferProgress[src]

impl Debug for DataTransferProgress[src]

impl Default for DataTransferProgress[src]

impl PartialEq<DataTransferProgress> for DataTransferProgress[src]

impl StructuralPartialEq for DataTransferProgress[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.