Struct rusoto_codecommit::BlobMetadata[][src]

pub struct BlobMetadata {
    pub blob_id: Option<String>,
    pub mode: Option<String>,
    pub path: Option<String>,
}

Returns information about a specific Git blob object.

Fields

The full ID of the blob.

The file mode permissions of the blob. File mode permission codes include:

  • 100644 indicates read/write

  • 100755 indicates read/write/execute

  • 160000 indicates a submodule

  • 120000 indicates a symlink

The path to the blob and any associated file name, if any.

Trait Implementations

impl Default for BlobMetadata
[src]

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

impl Debug for BlobMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for BlobMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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