[−][src]Struct rusoto_codecommit::GetFileOutput
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]
fn eq(&self, other: &GetFileOutput) -> bool
[src]
fn ne(&self, other: &GetFileOutput) -> bool
[src]
impl Default for GetFileOutput
[src]
fn default() -> GetFileOutput
[src]
impl Clone for GetFileOutput
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self