pub struct UpdateCommentRequestBuilder { /* private fields */ }Expand description
Builder for UpdateCommentRequest.
Implementations§
Source§impl UpdateCommentRequestBuilder
impl UpdateCommentRequestBuilder
pub fn project_key<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn work_item_type_key<VALUE: Into<String>>( &mut self, value: VALUE, ) -> &mut Self
pub fn work_item_id<VALUE: Into<i64>>(&mut self, value: VALUE) -> &mut Self
pub fn comment_id<VALUE: Into<i64>>(&mut self, value: VALUE) -> &mut Self
pub fn content<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn rich_text<VALUE: Into<Vec<Value>>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn build(
&self,
) -> Result<UpdateCommentRequest, UpdateCommentRequestBuilderError>
pub fn build( &self, ) -> Result<UpdateCommentRequest, UpdateCommentRequestBuilderError>
Trait Implementations§
Source§impl Clone for UpdateCommentRequestBuilder
impl Clone for UpdateCommentRequestBuilder
Source§fn clone(&self) -> UpdateCommentRequestBuilder
fn clone(&self) -> UpdateCommentRequestBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for UpdateCommentRequestBuilder
impl RefUnwindSafe for UpdateCommentRequestBuilder
impl Send for UpdateCommentRequestBuilder
impl Sync for UpdateCommentRequestBuilder
impl Unpin for UpdateCommentRequestBuilder
impl UnwindSafe for UpdateCommentRequestBuilder
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