pub struct BugWatch(/* private fields */);Expand description
A bug on a remote system.
Implementations§
Source§impl BugWatch
impl BugWatch
pub fn get<'a>(&self, client: &'a dyn Client) -> Result<BugWatchFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &BugWatchFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &BugWatchDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BugWatch
impl RefUnwindSafe for BugWatch
impl Send for BugWatch
impl Sync for BugWatch
impl Unpin for BugWatch
impl UnwindSafe for BugWatch
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