[][src]Struct rusoto_glacier::GetJobOutputOutput

pub struct GetJobOutputOutput {
    pub accept_ranges: Option<String>,
    pub archive_description: Option<String>,
    pub body: Option<Bytes>,
    pub checksum: Option<String>,
    pub content_range: Option<String>,
    pub content_type: Option<String>,
    pub status: Option<i64>,
}

Contains the Amazon Glacier response to your request.

Fields

accept_ranges: Option<String>

Indicates the range units accepted. For more information, see RFC2616.

archive_description: Option<String>

The description of an archive.

body: Option<Bytes>

The job data, either archive data or inventory data.

checksum: Option<String>

The checksum of the data in the response. This header is returned only when retrieving the output for an archive retrieval job. Furthermore, this header appears only under the following conditions:

content_range: Option<String>

The range of bytes returned by Amazon Glacier. If only partial output is downloaded, the response provides the range of bytes Amazon Glacier returned. For example, bytes 0-1048575/8388608 returns the first 1 MB from 8 MB.

content_type: Option<String>

The Content-Type depends on whether the job output is an archive or a vault inventory. For archive data, the Content-Type is application/octet-stream. For vault inventory, if you requested CSV format when you initiated the job, the Content-Type is text/csv. Otherwise, by default, vault inventory is returned as JSON, and the Content-Type is application/json.

status: Option<i64>

The HTTP response code for a job output request. The value depends on whether a range was specified in the request.

Trait Implementations

impl PartialEq<GetJobOutputOutput> for GetJobOutputOutput[src]

impl Default for GetJobOutputOutput[src]

impl Clone for GetJobOutputOutput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetJobOutputOutput[src]

Auto Trait Implementations

impl Send for GetJobOutputOutput

impl Sync for GetJobOutputOutput

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self