Struct rusoto_codecommit::GetBlobInput[][src]

pub struct GetBlobInput {
    pub blob_id: String,
    pub repository_name: String,
}

Represents the input of a get blob operation.

Fields

The ID of the blob, which is its SHA-1 pointer.

The name of the repository that contains the blob.

Trait Implementations

impl Default for GetBlobInput
[src]

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

impl Debug for GetBlobInput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetBlobInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetBlobInput
[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