[][src]Struct gcp_client::google::storage::v1::RewriteResponse

pub struct RewriteResponse {
    pub total_bytes_rewritten: i64,
    pub object_size: i64,
    pub done: bool,
    pub rewrite_token: String,
    pub resource: Option<Object>,
}

A rewrite response.

Fields

total_bytes_rewritten: i64

The total bytes written so far, which can be used to provide a waiting user with a progress indicator. This property is always present in the response.

object_size: i64

The total size of the object being copied in bytes. This property is always present in the response.

done: bool

true if the copy is finished; otherwise, false if the copy is in progress. This property is always present in the response.

rewrite_token: String

A token to use in subsequent requests to continue copying data. This token is present in the response only when there is more data to copy.

resource: Option<Object>

A resource containing the metadata for the copied-to object. This property is present in the response only when copying completes.

Trait Implementations

impl Clone for RewriteResponse[src]

impl Debug for RewriteResponse[src]

impl Default for RewriteResponse[src]

impl Message for RewriteResponse[src]

impl PartialEq<RewriteResponse> for RewriteResponse[src]

impl StructuralPartialEq for RewriteResponse[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> 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>, 

impl<T> WithSubscriber for T[src]