Struct google_storagetransfer1::TransferCounters [] [src]

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 in the data source that are not transferred because they already exist in the data sink.

Objects found in the data source that are scheduled to be transferred, which will be copied, excluded based on conditions, or skipped due to failures.

Bytes that failed to be deleted from the data sink.

Objects that failed to be deleted from the data sink.

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

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

Bytes that are copied to the data sink.

Bytes found in the data source that are scheduled to be transferred, which will be copied, excluded based on conditions, or skipped due to failures.

Objects that are deleted from the data source.

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

Bytes in the data source that failed during the transfer.

Bytes that are deleted from the data source.

Bytes that are deleted from the data sink.

Objects that are copied to the data sink.

Objects that are deleted from the data sink.

Objects in the data source that failed during the transfer.

Trait Implementations

impl Debug for TransferCounters
[src]

Formats the value using the given formatter.

impl Clone for TransferCounters
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for TransferCounters
[src]

Returns the "default value" for a type. Read more

impl Part for TransferCounters
[src]