pub struct BugActivityFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub bug_link: Url,
pub datechanged: DateTime<Utc>,
pub message: String,
pub newvalue: String,
pub oldvalue: String,
pub person_link: Url,
pub whatchanged: String,
}Expand description
Representation of the bug_activity-full resource
Fields§
§self_link: Option<Url>The canonical link to this resource.
web_link: Option<Url>The canonical human-addressable web link to this resource.
resource_type_link: Option<Url>The link to the WADL description of this resource.
http_etag: Option<String>The value of the HTTP ETag for this resource.
bug_link: UrlBug
datechanged: DateTime<Utc>Date Changed
The date on which this activity occurred.
message: StringMessage
Additional information about what changed.
newvalue: StringNew Value
The value after the change.
oldvalue: StringOld Value
The value before the change.
person_link: UrlPerson
The person’s Launchpad ID or email address.
whatchanged: StringWhat Changed
The property of the bug that changed.
Implementations§
Source§impl BugActivityFull
impl BugActivityFull
Sourcepub fn self_(&self) -> Option<BugActivity>
pub fn self_(&self) -> Option<BugActivity>
The canonical link to this resource.
pub fn set_self_(&mut self, value: Option<BugActivity>)
pub fn set_bug(&mut self, value: Bug)
pub fn set_person(&mut self, value: Person)
Trait Implementations§
Source§impl Clone for BugActivityFull
impl Clone for BugActivityFull
Source§fn clone(&self) -> BugActivityFull
fn clone(&self) -> BugActivityFull
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 BugActivityFull
impl Debug for BugActivityFull
Source§impl<'de> Deserialize<'de> for BugActivityFull
impl<'de> Deserialize<'de> for BugActivityFull
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 BugActivityFull
impl PartialEq for BugActivityFull
Source§impl Serialize for BugActivityFull
impl Serialize for BugActivityFull
impl StructuralPartialEq for BugActivityFull
Auto Trait Implementations§
impl Freeze for BugActivityFull
impl RefUnwindSafe for BugActivityFull
impl Send for BugActivityFull
impl Sync for BugActivityFull
impl Unpin for BugActivityFull
impl UnwindSafe for BugActivityFull
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