[][src]Struct rusoto_codecommit::SymbolicLink

pub struct SymbolicLink {
    pub absolute_path: Option<String>,
    pub blob_id: Option<String>,
    pub file_mode: Option<String>,
    pub relative_path: Option<String>,
}

Returns information about a symbolic link in a repository folder.

Fields

absolute_path: Option<String>

The fully qualified path to the folder that contains the symbolic link.

blob_id: Option<String>

The blob ID that contains the information about the symbolic link.

file_mode: Option<String>

The file mode permissions of the blob that cotains information about the symbolic link.

relative_path: Option<String>

The relative path of the symbolic link from the folder where the query originated.

Trait Implementations

impl Clone for SymbolicLink[src]

impl Debug for SymbolicLink[src]

impl Default for SymbolicLink[src]

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

impl PartialEq<SymbolicLink> for SymbolicLink[src]

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