[][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 the supported return values.

file_path: String

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

file_size: i64

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

Trait Implementations

impl Clone for GetFileOutput[src]

impl Debug for GetFileOutput[src]

impl Default for GetFileOutput[src]

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

impl PartialEq<GetFileOutput> for GetFileOutput[src]

impl StructuralPartialEq for GetFileOutput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.