pub struct PullsUpdateReviewCommentRequest {
pub body: String,
}
Fields§
§body: String
The text of the reply to the review comment.
Implementations§
Source§impl PullsUpdateReviewCommentRequest
impl PullsUpdateReviewCommentRequest
pub fn new(body: String) -> PullsUpdateReviewCommentRequest
Trait Implementations§
Source§impl Clone for PullsUpdateReviewCommentRequest
impl Clone for PullsUpdateReviewCommentRequest
Source§fn clone(&self) -> PullsUpdateReviewCommentRequest
fn clone(&self) -> PullsUpdateReviewCommentRequest
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 moreSource§impl Default for PullsUpdateReviewCommentRequest
impl Default for PullsUpdateReviewCommentRequest
Source§fn default() -> PullsUpdateReviewCommentRequest
fn default() -> PullsUpdateReviewCommentRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PullsUpdateReviewCommentRequest
impl<'de> Deserialize<'de> for PullsUpdateReviewCommentRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PullsUpdateReviewCommentRequest
impl PartialEq for PullsUpdateReviewCommentRequest
Source§fn eq(&self, other: &PullsUpdateReviewCommentRequest) -> bool
fn eq(&self, other: &PullsUpdateReviewCommentRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PullsUpdateReviewCommentRequest
Auto Trait Implementations§
impl Freeze for PullsUpdateReviewCommentRequest
impl RefUnwindSafe for PullsUpdateReviewCommentRequest
impl Send for PullsUpdateReviewCommentRequest
impl Sync for PullsUpdateReviewCommentRequest
impl Unpin for PullsUpdateReviewCommentRequest
impl UnwindSafe for PullsUpdateReviewCommentRequest
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