[][src]Struct rusoto_codecommit::UserInfo

pub struct UserInfo {
    pub date: Option<String>,
    pub email: Option<String>,
    pub name: Option<String>,
}

Information about the user who made a specified commit.

Fields

date: Option<String>

The date when the specified commit was commited, in timestamp format with GMT offset.

email: Option<String>

The email address associated with the user who made the commit, if any.

name: Option<String>

The name of the user who made the specified commit.

Trait Implementations

impl Clone for UserInfo[src]

impl Debug for UserInfo[src]

impl Default for UserInfo[src]

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

impl PartialEq<UserInfo> for UserInfo[src]

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