pub struct CreateIssueCommentParams {
pub body: Option<String>,
pub is_review: Option<bool>,
pub is_thread: Option<bool>,
pub reply_to: Option<f64>,
pub thread_id: Option<f64>,
}Fields§
§body: Option<String>§is_review: Option<bool>§is_thread: Option<bool>§reply_to: Option<f64>§thread_id: Option<f64>Trait Implementations§
Source§impl Clone for CreateIssueCommentParams
impl Clone for CreateIssueCommentParams
Source§fn clone(&self) -> CreateIssueCommentParams
fn clone(&self) -> CreateIssueCommentParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateIssueCommentParams
impl Debug for CreateIssueCommentParams
Source§impl<'de> Deserialize<'de> for CreateIssueCommentParams
impl<'de> Deserialize<'de> for CreateIssueCommentParams
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
Auto Trait Implementations§
impl Freeze for CreateIssueCommentParams
impl RefUnwindSafe for CreateIssueCommentParams
impl Send for CreateIssueCommentParams
impl Sync for CreateIssueCommentParams
impl Unpin for CreateIssueCommentParams
impl UnsafeUnpin for CreateIssueCommentParams
impl UnwindSafe for CreateIssueCommentParams
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