[][src]Struct gitlab::types::CommitNote

pub struct CommitNote {
    pub note: String,
    pub path: Option<String>,
    pub line: Option<u64>,
    pub line_type: Option<LineType>,
    pub author: UserBasic,
    pub created_at: DateTime<Utc>,
}

A note on a commit diff.

Fields

note: String

The content of the note.

path: Option<String>

The path of the file commented on.

line: Option<u64>

The line of the file commented on.

line_type: Option<LineType>

The type of the line commented on.

author: UserBasic

The author of the note.

created_at: DateTime<Utc>

When the note was created.

Trait Implementations

impl Clone for CommitNote[src]

impl Debug for CommitNote[src]

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

impl Serialize for CommitNote[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, U> Into<U> for T where
    U: From<T>, 
[src]

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.