pub struct BugLinkTargetFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
}Expand description
Representation of the bug_link_target-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.
Implementations§
Source§impl BugLinkTargetFull
impl BugLinkTargetFull
Sourcepub fn self_(&self) -> Option<BugLinkTarget>
pub fn self_(&self) -> Option<BugLinkTarget>
The canonical link to this resource.
Sourcepub fn set_self_(&mut self, value: Option<BugLinkTarget>)
pub fn set_self_(&mut self, value: Option<BugLinkTarget>)
Set the self_link value.
Trait Implementations§
Source§impl Clone for BugLinkTargetFull
impl Clone for BugLinkTargetFull
Source§fn clone(&self) -> BugLinkTargetFull
fn clone(&self) -> BugLinkTargetFull
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 BugLinkTargetFull
impl Debug for BugLinkTargetFull
Source§impl Default for BugLinkTargetFull
impl Default for BugLinkTargetFull
Source§impl<'de> Deserialize<'de> for BugLinkTargetFull
impl<'de> Deserialize<'de> for BugLinkTargetFull
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 BugLinkTargetFull
impl PartialEq for BugLinkTargetFull
Source§impl Serialize for BugLinkTargetFull
impl Serialize for BugLinkTargetFull
impl StructuralPartialEq for BugLinkTargetFull
Auto Trait Implementations§
impl Freeze for BugLinkTargetFull
impl RefUnwindSafe for BugLinkTargetFull
impl Send for BugLinkTargetFull
impl Sync for BugLinkTargetFull
impl Unpin for BugLinkTargetFull
impl UnwindSafe for BugLinkTargetFull
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