pub struct BugLinkTarget(/* private fields */);Expand description
An entity which can be linked to bugs.
Examples include an ISpecification.
Implementations§
source§impl BugLinkTarget
impl BugLinkTarget
pub fn get<'a>( &self, client: &'a dyn Client, ) -> Result<BugLinkTargetFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &BugLinkTargetFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &BugLinkTargetDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BugLinkTarget
impl RefUnwindSafe for BugLinkTarget
impl Send for BugLinkTarget
impl Sync for BugLinkTarget
impl Unpin for BugLinkTarget
impl UnwindSafe for BugLinkTarget
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