pub struct BugTrackerComponentGroup(/* private fields */);Expand description
A collection of components in a remote bug tracker.
Some bug trackers organize sets of components into higher level groups, such as Bugzilla’s ‘product’.
Implementations§
Source§impl BugTrackerComponentGroup
impl BugTrackerComponentGroup
pub fn get<'a>( &self, client: &'a dyn Client, ) -> Result<BugTrackerComponentGroupFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &BugTrackerComponentGroupFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &BugTrackerComponentGroupDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BugTrackerComponentGroup
impl RefUnwindSafe for BugTrackerComponentGroup
impl Send for BugTrackerComponentGroup
impl Sync for BugTrackerComponentGroup
impl Unpin for BugTrackerComponentGroup
impl UnwindSafe for BugTrackerComponentGroup
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