pub struct BugTrackerComponentGroupFull {
pub self_link: Option<Url>,
pub web_link: Option<Url>,
pub resource_type_link: Option<Url>,
pub http_etag: Option<String>,
pub bug_tracker_link: Url,
pub components_collection_link: Url,
pub name: String,
}Expand description
Representation of the bug_tracker_component_group-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_tracker_link: UrlBugTracker
components_collection_link: UrlComponents.
name: StringName
The name of the bug tracker product.
Implementations§
Source§impl BugTrackerComponentGroupFull
impl BugTrackerComponentGroupFull
Sourcepub fn self_(&self) -> Option<BugTrackerComponentGroup>
pub fn self_(&self) -> Option<BugTrackerComponentGroup>
The canonical link to this resource.
Sourcepub fn set_self_(&mut self, value: Option<BugTrackerComponentGroup>)
pub fn set_self_(&mut self, value: Option<BugTrackerComponentGroup>)
Set the self_link value.
Sourcepub fn bug_tracker(&self) -> BugTracker
pub fn bug_tracker(&self) -> BugTracker
BugTracker
Sourcepub fn set_bug_tracker(&mut self, value: BugTracker)
pub fn set_bug_tracker(&mut self, value: BugTracker)
Set the bug_tracker_link value.
Sourcepub fn components<'a>(
&'a self,
client: &'a dyn Client,
) -> Result<PagedCollection<'a, BugTrackerComponentPage>, Error>
pub fn components<'a>( &'a self, client: &'a dyn Client, ) -> Result<PagedCollection<'a, BugTrackerComponentPage>, Error>
Components.
Trait Implementations§
Source§impl Clone for BugTrackerComponentGroupFull
impl Clone for BugTrackerComponentGroupFull
Source§fn clone(&self) -> BugTrackerComponentGroupFull
fn clone(&self) -> BugTrackerComponentGroupFull
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BugTrackerComponentGroupFull
impl Debug for BugTrackerComponentGroupFull
Source§impl<'de> Deserialize<'de> for BugTrackerComponentGroupFull
impl<'de> Deserialize<'de> for BugTrackerComponentGroupFull
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 BugTrackerComponentGroupFull
impl PartialEq for BugTrackerComponentGroupFull
Source§fn eq(&self, other: &BugTrackerComponentGroupFull) -> bool
fn eq(&self, other: &BugTrackerComponentGroupFull) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BugTrackerComponentGroupFull
Auto Trait Implementations§
impl Freeze for BugTrackerComponentGroupFull
impl RefUnwindSafe for BugTrackerComponentGroupFull
impl Send for BugTrackerComponentGroupFull
impl Sync for BugTrackerComponentGroupFull
impl Unpin for BugTrackerComponentGroupFull
impl UnsafeUnpin for BugTrackerComponentGroupFull
impl UnwindSafe for BugTrackerComponentGroupFull
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