Struct gitlab::api::projects::issues::EditIssueBuilder [−][src]
pub struct EditIssueBuilder<'a> { /* fields omitted */ }
Expand description
Builder for EditIssue
.
Implementations
The project to add the issue to.
The title of the new issue.
The description of the issue.
The ID of a milestone to add the issue to.
Change the state of the issue.
Set the last-updated time for the issue.
Set whether discussion of the issue should be locked or not.
The internal ID of the epic to add the issue to.
Updates an issue to be confidential
👎 Deprecated: use issue
instead
use issue
instead
Set the issue ID.
Assign the issue to a user.
Assigne the issue to a set of users.
👎 Deprecated: use clear_labels
instead
use clear_labels
instead
Remove all labels from the issue.
Remove all labels from the issue.
Add a label to the issue.
Note that the list of labels sent will replace the set on the instance. This only adds it to the list of labels to add to the set before sending it to the instance.
See: add_label
.
Add a set of labels to the issue.
Note that the list of labels sent will replace the set on the instance. This only adds it to the list of labels to add to the set before sending it to the instance.
See: add_label
.
Add a label to the issue.
This is an incremental addition to the existing set of labels on the issue.
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for EditIssueBuilder<'a>
impl<'a> Send for EditIssueBuilder<'a>
impl<'a> Sync for EditIssueBuilder<'a>
impl<'a> Unpin for EditIssueBuilder<'a>
impl<'a> UnwindSafe for EditIssueBuilder<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more