pub struct BugTaskDiff {
pub assignee_link: Option<Url>,
pub bug_watch_link: Option<Url>,
pub importance: Option<Importance>,
pub milestone_link: Option<Url>,
pub status: Option<BugTaskStatus>,
pub target_link: Option<Url>,
}Expand description
Representation of the bug_task-diff resource
Fields§
§assignee_link: Option<Url>Assigned to
bug_watch_link: Option<Url>Remote Bug Details
Select the bug watch that represents this task in the relevant bug tracker. If none of the bug watches represents this particular bug task, leave it as (None). Linking the remote bug watch with the task in this way means that a change in the remote bug status will change the status of this bug task in Launchpad.
importance: Option<Importance>Importance
milestone_link: Option<Url>Milestone
status: Option<BugTaskStatus>Status
target_link: Option<Url>Target
The software in which this bug should be fixed.
Implementations§
Source§impl BugTaskDiff
impl BugTaskDiff
Sourcepub fn set_assignee(&mut self, value: Option<Person>)
pub fn set_assignee(&mut self, value: Option<Person>)
Set the assignee_link value.
Sourcepub fn bug_watch(&self) -> Option<BugWatch>
pub fn bug_watch(&self) -> Option<BugWatch>
Remote Bug Details
Select the bug watch that represents this task in the relevant bug tracker. If none of the bug watches represents this particular bug task, leave it as (None). Linking the remote bug watch with the task in this way means that a change in the remote bug status will change the status of this bug task in Launchpad.
Sourcepub fn set_bug_watch(&mut self, value: Option<BugWatch>)
pub fn set_bug_watch(&mut self, value: Option<BugWatch>)
Set the bug_watch_link value.
Sourcepub fn set_milestone(&mut self, value: Option<Milestone>)
pub fn set_milestone(&mut self, value: Option<Milestone>)
Set the milestone_link value.
Sourcepub fn target(&self) -> Option<BugTarget>
pub fn target(&self) -> Option<BugTarget>
Target
The software in which this bug should be fixed.
Sourcepub fn set_target(&mut self, value: Option<BugTarget>)
pub fn set_target(&mut self, value: Option<BugTarget>)
Set the target_link value.
Trait Implementations§
Source§impl Clone for BugTaskDiff
impl Clone for BugTaskDiff
Source§fn clone(&self) -> BugTaskDiff
fn clone(&self) -> BugTaskDiff
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more