Enum gitlab::types::AwardableId [] [src]

pub enum AwardableId {
    Issue(IssueId),
    MergeRequest(MergeRequestId),
    Snippet(SnippetId),
    Note(NoteId),
}

An ID of an entity which may receive an award.

Variants

The ID of an awarded issue.

The ID of an awarded merge request.

The ID of an awarded snippet.

The ID of an awarded note.

Trait Implementations

impl Debug for AwardableId
[src]

Formats the value using the given formatter.

impl Clone for AwardableId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for AwardableId
[src]

impl PartialEq for AwardableId
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for AwardableId
[src]