[][src]Struct google_storagetransfer1::TransferCounters

pub struct TransferCounters {
    pub bytes_from_source_skipped_by_sync: Option<String>,
    pub objects_found_from_source: Option<String>,
    pub bytes_failed_to_delete_from_sink: Option<String>,
    pub objects_failed_to_delete_from_sink: Option<String>,
    pub objects_found_only_from_sink: Option<String>,
    pub objects_from_source_skipped_by_sync: Option<String>,
    pub bytes_copied_to_sink: Option<String>,
    pub bytes_found_from_source: Option<String>,
    pub objects_deleted_from_source: Option<String>,
    pub bytes_found_only_from_sink: Option<String>,
    pub bytes_from_source_failed: Option<String>,
    pub bytes_deleted_from_source: Option<String>,
    pub bytes_deleted_from_sink: Option<String>,
    pub objects_copied_to_sink: Option<String>,
    pub objects_deleted_from_sink: Option<String>,
    pub objects_from_source_failed: Option<String>,
}

A collection of counters that report the progress of a transfer operation.

This type is not used in any activity, and only used as part of another schema.

Fields

bytes_from_source_skipped_by_sync: Option<String>

Bytes in the data source that are not transferred because they already exist in the data sink.

objects_found_from_source: Option<String>

Objects found in the data source that are scheduled to be transferred, excluding any that are filtered based on object conditions or skipped due to sync.

bytes_failed_to_delete_from_sink: Option<String>

Bytes that failed to be deleted from the data sink.

objects_failed_to_delete_from_sink: Option<String>

Objects that failed to be deleted from the data sink.

objects_found_only_from_sink: Option<String>

Objects found only in the data sink that are scheduled to be deleted.

objects_from_source_skipped_by_sync: Option<String>

Objects in the data source that are not transferred because they already exist in the data sink.

bytes_copied_to_sink: Option<String>

Bytes that are copied to the data sink.

bytes_found_from_source: Option<String>

Bytes found in the data source that are scheduled to be transferred, excluding any that are filtered based on object conditions or skipped due to sync.

objects_deleted_from_source: Option<String>

Objects that are deleted from the data source.

bytes_found_only_from_sink: Option<String>

Bytes found only in the data sink that are scheduled to be deleted.

bytes_from_source_failed: Option<String>

Bytes in the data source that failed to be transferred or that failed to be deleted after being transferred.

bytes_deleted_from_source: Option<String>

Bytes that are deleted from the data source.

bytes_deleted_from_sink: Option<String>

Bytes that are deleted from the data sink.

objects_copied_to_sink: Option<String>

Objects that are copied to the data sink.

objects_deleted_from_sink: Option<String>

Objects that are deleted from the data sink.

objects_from_source_failed: Option<String>

Objects in the data source that failed to be transferred or that failed to be deleted after being transferred.

Trait Implementations

impl Part for TransferCounters[src]

impl Clone for TransferCounters[src]

impl Default for TransferCounters[src]

impl Debug for TransferCounters[src]

impl Serialize for TransferCounters[src]

impl<'de> Deserialize<'de> for TransferCounters[src]

Auto Trait Implementations

Blanket Implementations

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

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

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 = !

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.

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

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

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

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]