[][src]Struct rusoto_codecommit::GetFileInput

pub struct GetFileInput {
    pub commit_specifier: Option<String>,
    pub file_path: String,
    pub repository_name: String,
}

Fields

commit_specifier: Option<String>

The fully quaified reference that identifies the commit that contains the file. For example, you can specify a full commit ID, a tag, a branch name, or a reference such as refs/heads/master. If none is provided, the head commit is used.

file_path: String

The fully qualified path to the file, including the full name and extension of the file. For example, /examples/file.md is the fully qualified path to a file named file.md in a folder named examples.

repository_name: String

The name of the repository that contains the file.

Trait Implementations

impl Clone for GetFileInput[src]

impl Debug for GetFileInput[src]

impl Default for GetFileInput[src]

impl PartialEq<GetFileInput> for GetFileInput[src]

impl Serialize for GetFileInput[src]

impl StructuralPartialEq for GetFileInput[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> 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.