pub struct BugTrackerDiff {
pub active: Option<bool>,
pub base_url: Option<Url>,
pub base_url_aliases: Option<Vec<Url>>,
pub bug_tracker_type: Option<BugTrackerType>,
pub contact_details: Option<String>,
pub has_lp_plugin: Option<bool>,
pub name: Option<String>,
pub registrant_link: Option<Url>,
pub summary: Option<String>,
pub title: Option<String>,
}Expand description
Representation of the bug_tracker-diff resource
Fields§
§active: Option<bool>Updates for this bug tracker are enabled
base_url: Option<Url>Location
The top-level URL for the bug tracker, or an upstream email address. This must be accurate so that Launchpad can link to external bug reports.
base_url_aliases: Option<Vec<Url>>Location aliases
A list of URLs or email addresses that all lead to the same bug tracker, or commonly seen typos, separated by whitespace.
bug_tracker_type: Option<BugTrackerType>Bug Tracker Type
contact_details: Option<String>Contact details
The contact details for the external bug tracker (so that, for example, its administrators can be contacted about a security breach).
has_lp_plugin: Option<bool>This bug tracker has a Launchpad plugin installed.
name: Option<String>Name
A URL-friendly name for the bug tracker, such as “mozilla-bugs”.
registrant_link: Option<Url>Owner
summary: Option<String>Summary
A brief introduction or overview of this bug tracker instance.
title: Option<String>Title
A descriptive label for this tracker to show in listings.
Implementations§
Source§impl BugTrackerDiff
impl BugTrackerDiff
Sourcepub fn registrant(&self) -> Option<Person>
pub fn registrant(&self) -> Option<Person>
Owner
pub fn set_registrant(&mut self, value: Option<Person>)
Trait Implementations§
Source§impl Clone for BugTrackerDiff
impl Clone for BugTrackerDiff
Source§fn clone(&self) -> BugTrackerDiff
fn clone(&self) -> BugTrackerDiff
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more