pub struct CreateIssueCommentOption {
pub body: String,
}
Expand description
CreateIssueCommentOption : CreateIssueCommentOption options for creating a comment on an issue
Fields§
§body: String
Implementations§
Source§impl CreateIssueCommentOption
impl CreateIssueCommentOption
Sourcepub fn new(body: String) -> CreateIssueCommentOption
pub fn new(body: String) -> CreateIssueCommentOption
CreateIssueCommentOption options for creating a comment on an issue
Trait Implementations§
Source§impl Clone for CreateIssueCommentOption
impl Clone for CreateIssueCommentOption
Source§fn clone(&self) -> CreateIssueCommentOption
fn clone(&self) -> CreateIssueCommentOption
Returns a copy 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 Debug for CreateIssueCommentOption
impl Debug for CreateIssueCommentOption
Source§impl Default for CreateIssueCommentOption
impl Default for CreateIssueCommentOption
Source§fn default() -> CreateIssueCommentOption
fn default() -> CreateIssueCommentOption
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateIssueCommentOption
impl<'de> Deserialize<'de> for CreateIssueCommentOption
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 CreateIssueCommentOption
impl PartialEq for CreateIssueCommentOption
Source§impl Serialize for CreateIssueCommentOption
impl Serialize for CreateIssueCommentOption
impl StructuralPartialEq for CreateIssueCommentOption
Auto Trait Implementations§
impl Freeze for CreateIssueCommentOption
impl RefUnwindSafe for CreateIssueCommentOption
impl Send for CreateIssueCommentOption
impl Sync for CreateIssueCommentOption
impl Unpin for CreateIssueCommentOption
impl UnwindSafe for CreateIssueCommentOption
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