Enum gitlab::types::NoteableId
[−]
[src]
pub enum NoteableId {
Commit(ObjectId),
Issue(IssueId),
MergeRequest(MergeRequestId),
Snippet(SnippetId),
}The ID of an entity a note is attached to.
Variants
Commit(ObjectId)The ID of the commit for a commit note.
Issue(IssueId)The ID of the issue for an issue note.
MergeRequest(MergeRequestId)The ID of the merge request for a merge request note.
Snippet(SnippetId)The ID of the snippet for a snippet note.
Trait Implementations
impl Debug for NoteableId[src]
impl Clone for NoteableId[src]
fn clone(&self) -> NoteableId
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for NoteableId[src]
fn eq(&self, __arg_0: &NoteableId) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &NoteableId) -> bool
This method tests for !=.