pub struct CommentCreateInput {Show 16 fields
pub id: Option<String>,
pub body: Option<String>,
pub body_data: Option<Value>,
pub issue_id: Option<String>,
pub project_update_id: Option<String>,
pub initiative_update_id: Option<String>,
pub post_id: Option<String>,
pub document_content_id: Option<String>,
pub parent_id: Option<String>,
pub create_as_user: Option<String>,
pub display_icon_url: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub do_not_subscribe_to_issue: Option<bool>,
pub create_on_synced_slack_thread: Option<bool>,
pub quoted_text: Option<String>,
pub subscriber_ids: Option<Vec<String>>,
}Fields§
§id: Option<String>§body: Option<String>§body_data: Option<Value>§issue_id: Option<String>§project_update_id: Option<String>§initiative_update_id: Option<String>§post_id: Option<String>§document_content_id: Option<String>§parent_id: Option<String>§create_as_user: Option<String>§display_icon_url: Option<String>§created_at: Option<DateTime<Utc>>§do_not_subscribe_to_issue: Option<bool>§create_on_synced_slack_thread: Option<bool>§quoted_text: Option<String>§subscriber_ids: Option<Vec<String>>Trait Implementations§
Source§impl Clone for CommentCreateInput
impl Clone for CommentCreateInput
Source§fn clone(&self) -> CommentCreateInput
fn clone(&self) -> CommentCreateInput
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 Debug for CommentCreateInput
impl Debug for CommentCreateInput
Source§impl Default for CommentCreateInput
impl Default for CommentCreateInput
Source§fn default() -> CommentCreateInput
fn default() -> CommentCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentCreateInput
impl<'de> Deserialize<'de> for CommentCreateInput
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 CommentCreateInput
impl RefUnwindSafe for CommentCreateInput
impl Send for CommentCreateInput
impl Sync for CommentCreateInput
impl Unpin for CommentCreateInput
impl UnwindSafe for CommentCreateInput
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