[][src]Struct rusoto_codecommit::GetFolderInput

pub struct GetFolderInput {
    pub commit_specifier: Option<String>,
    pub folder_path: String,
    pub repository_name: String,
}

Fields

commit_specifier: Option<String>

A fully qualified reference used to identify a commit that contains the version of the folder's content to return. A fully qualified reference can be a commit ID, branch name, tag, or reference such as HEAD. If no specifier is provided, the folder content is returned as it exists in the HEAD commit.

folder_path: String

The fully qualified path to the folder whose contents are returned, including the folder name. For example, /examples is a fully-qualified path to a folder named examples that was created off of the root directory (/) of a repository.

repository_name: String

The name of the repository.

Trait Implementations

impl Clone for GetFolderInput[src]

impl Debug for GetFolderInput[src]

impl Default for GetFolderInput[src]

impl PartialEq<GetFolderInput> for GetFolderInput[src]

impl Serialize for GetFolderInput[src]

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