Struct rusoto_firehose::PutRecordBatchOutput[][src]

pub struct PutRecordBatchOutput {
    pub failed_put_count: i64,
    pub request_responses: Vec<PutRecordBatchResponseEntry>,
}

Fields

The number of records that might have failed processing.

The results array. For each record, the index of the response element is the same as the index used in the request array.

Trait Implementations

impl Default for PutRecordBatchOutput
[src]

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

impl Debug for PutRecordBatchOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for PutRecordBatchOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutRecordBatchOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations