[][src]Struct rusoto_codecommit::GetFileOutput

pub struct GetFileOutput {
    pub blob_id: String,
    pub commit_id: String,
    pub file_content: Bytes,
    pub file_mode: String,
    pub file_path: String,
    pub file_size: i64,
}

Fields

blob_id: String

The blob ID of the object that represents the file content.

commit_id: String

The full commit ID of the commit that contains the content returned by GetFile.

file_content: Bytes

The base-64 encoded binary data object that represents the content of the file.

file_mode: String

The extrapolated file mode permissions of the blob. Valid values include strings such as EXECUTABLE and not numeric values.

The file mode permissions returned by this API are not the standard file mode permission values, such as 100644, but rather extrapolated values. See below for a full list of supported return values.

file_path: String

The fully qualified path to the specified file. This returns the name and extension of the file.

file_size: i64

The size of the contents of the file, in bytes.

Trait Implementations

impl PartialEq<GetFileOutput> for GetFileOutput[src]

impl Default for GetFileOutput[src]

impl Clone for GetFileOutput[src]

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

Performs copy-assignment from source. Read more

impl Debug for GetFileOutput[src]

impl<'de> Deserialize<'de> for GetFileOutput[src]

Auto Trait Implementations

impl Send for GetFileOutput

impl Sync for GetFileOutput

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self