pub struct DistroSeriesDifferenceCommentFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub body_text: String,
pub comment_author_link: Url,
pub comment_date: DateTime<Utc>,
pub source_package_name: String,
}Expand description
Representation of the distro_series_difference_comment-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.
body_text: StringComment text
The comment text for the related distro series difference.
The author of the comment.
comment_date: DateTime<Utc>Comment date.
source_package_name: StringSource package name
Name of the source package that this comment is for.
Implementations§
Source§impl DistroSeriesDifferenceCommentFull
impl DistroSeriesDifferenceCommentFull
Sourcepub fn self_(&self) -> Option<DistroSeriesDifferenceComment>
pub fn self_(&self) -> Option<DistroSeriesDifferenceComment>
The canonical link to this resource.
pub fn set_self_(&mut self, value: Option<DistroSeriesDifferenceComment>)
The author of the comment.
Trait Implementations§
Source§impl Clone for DistroSeriesDifferenceCommentFull
impl Clone for DistroSeriesDifferenceCommentFull
Source§fn clone(&self) -> DistroSeriesDifferenceCommentFull
fn clone(&self) -> DistroSeriesDifferenceCommentFull
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<'de> Deserialize<'de> for DistroSeriesDifferenceCommentFull
impl<'de> Deserialize<'de> for DistroSeriesDifferenceCommentFull
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 DistroSeriesDifferenceCommentFull
impl PartialEq for DistroSeriesDifferenceCommentFull
Source§fn eq(&self, other: &DistroSeriesDifferenceCommentFull) -> bool
fn eq(&self, other: &DistroSeriesDifferenceCommentFull) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DistroSeriesDifferenceCommentFull
Auto Trait Implementations§
impl Freeze for DistroSeriesDifferenceCommentFull
impl RefUnwindSafe for DistroSeriesDifferenceCommentFull
impl Send for DistroSeriesDifferenceCommentFull
impl Sync for DistroSeriesDifferenceCommentFull
impl Unpin for DistroSeriesDifferenceCommentFull
impl UnwindSafe for DistroSeriesDifferenceCommentFull
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