pub struct BugWatchDiff {
pub bug_tracker_link: Option<Url>,
pub date_last_changed: Option<DateTime<Utc>>,
pub date_last_checked: Option<DateTime<Utc>>,
pub date_next_checked: Option<DateTime<Utc>>,
pub last_error_type: Option<LastErrorType>,
pub remote_bug: Option<String>,
pub remote_importance: Option<String>,
pub remote_status: Option<String>,
}Expand description
Representation of the bug_watch-diff resource
Fields§
§bug_tracker_link: Option<Url>Bug System
You can register new bug trackers from the Launchpad Bugs home page.
date_last_changed: Option<DateTime<Utc>>Last Changed
date_last_checked: Option<DateTime<Utc>>Last Checked
date_next_checked: Option<DateTime<Utc>>Next Check
last_error_type: Option<LastErrorType>Last Error Type
remote_bug: Option<String>Remote Bug
The bug number of this bug in the remote bug tracker.
remote_importance: Option<String>Remote Importance
remote_status: Option<String>Remote Status
Implementations§
Source§impl BugWatchDiff
impl BugWatchDiff
Sourcepub fn bug_tracker(&self) -> Option<BugTracker>
pub fn bug_tracker(&self) -> Option<BugTracker>
Bug System
You can register new bug trackers from the Launchpad Bugs home page.
pub fn set_bug_tracker(&mut self, value: Option<BugTracker>)
Trait Implementations§
Source§impl Clone for BugWatchDiff
impl Clone for BugWatchDiff
Source§fn clone(&self) -> BugWatchDiff
fn clone(&self) -> BugWatchDiff
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BugWatchDiff
impl Debug for BugWatchDiff
Source§impl Default for BugWatchDiff
impl Default for BugWatchDiff
Source§impl<'de> Deserialize<'de> for BugWatchDiff
impl<'de> Deserialize<'de> for BugWatchDiff
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BugWatchDiff
impl PartialEq for BugWatchDiff
Source§impl Serialize for BugWatchDiff
impl Serialize for BugWatchDiff
impl StructuralPartialEq for BugWatchDiff
Auto Trait Implementations§
impl Freeze for BugWatchDiff
impl RefUnwindSafe for BugWatchDiff
impl Send for BugWatchDiff
impl Sync for BugWatchDiff
impl Unpin for BugWatchDiff
impl UnwindSafe for BugWatchDiff
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more