Struct google_storage1::RewriteResponse [] [src]

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

A rewrite response.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

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

The kind of item this is.

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

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

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.

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.

Trait Implementations

impl Debug for RewriteResponse
[src]

Formats the value using the given formatter.

impl Clone for RewriteResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for RewriteResponse
[src]

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

impl ResponseResult for RewriteResponse
[src]