Struct gapi_grpc::google::storagetransfer::v1::TransferCounters[][src]

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

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

Fields

objects_found_from_source: i64

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_found_from_source: i64

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_found_only_from_sink: i64

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

bytes_found_only_from_sink: i64

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

objects_from_source_skipped_by_sync: i64

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

bytes_from_source_skipped_by_sync: i64

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

objects_copied_to_sink: i64

Objects that are copied to the data sink.

bytes_copied_to_sink: i64

Bytes that are copied to the data sink.

objects_deleted_from_source: i64

Objects that are deleted from the data source.

bytes_deleted_from_source: i64

Bytes that are deleted from the data source.

objects_deleted_from_sink: i64

Objects that are deleted from the data sink.

bytes_deleted_from_sink: i64

Bytes that are deleted from the data sink.

objects_from_source_failed: i64

Objects in the data source that failed during the transfer.

bytes_from_source_failed: i64

Bytes in the data source that failed during the transfer.

objects_failed_to_delete_from_sink: i64

Objects that failed to be deleted from the data sink.

bytes_failed_to_delete_from_sink: i64

Bytes that failed to be deleted from the data sink.

Trait Implementations

impl Clone for TransferCounters[src]

impl Debug for TransferCounters[src]

impl Default for TransferCounters[src]

impl Message for TransferCounters[src]

impl PartialEq<TransferCounters> for TransferCounters[src]

impl StructuralPartialEq for TransferCounters[src]

Auto Trait Implementations

impl RefUnwindSafe for TransferCounters

impl Send for TransferCounters

impl Sync for TransferCounters

impl Unpin for TransferCounters

impl UnwindSafe for TransferCounters

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> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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 = 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]