Enum gitlab::types::EventTargetId [] [src]

pub enum EventTargetId {
    Commit(ObjectId),
    Issue(IssueId),
    MergeRequest(MergeRequestId),
    Snippet(SnippetId),
}

The ID of an event target.

Variants

The object ID of a commit event target.

The ID of an issue event target.

The ID of a merge request event target.

The ID of a snippet event target.

Trait Implementations

impl Debug for EventTargetId
[src]

Formats the value using the given formatter.

impl Clone for EventTargetId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EventTargetId
[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 EventTargetId
[src]