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

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

The content of the note.

The path of the file commented on.

The line of the file commented on.

The type of the line commented on.

The author of the note.

When the note was created.

Trait Implementations

impl Debug for CommitNote
[src]

Formats the value using the given formatter.

impl Clone for CommitNote
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more