pub struct CodeReviewComment(/* private fields */);Expand description
A link between a merge proposal and a message.
Implementations§
Source§impl CodeReviewComment
impl CodeReviewComment
pub fn get<'a>( &self, client: &'a dyn Client, ) -> Result<CodeReviewCommentFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &CodeReviewCommentFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &CodeReviewCommentDiff, ) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodeReviewComment
impl RefUnwindSafe for CodeReviewComment
impl Send for CodeReviewComment
impl Sync for CodeReviewComment
impl Unpin for CodeReviewComment
impl UnwindSafe for CodeReviewComment
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