pub struct CommentUpdateInput {
pub body: Option<String>,
pub body_data: Option<Value>,
pub resolving_user_id: Option<String>,
pub resolving_comment_id: Option<String>,
pub quoted_text: Option<String>,
pub subscriber_ids: Option<Vec<String>>,
pub do_not_subscribe_to_issue: Option<bool>,
}Fields§
§body: Option<String>The comment content.
body_data: Option<Value>Internal The comment content as a Prosemirror document.
resolving_user_id: Option<String>INTERNAL The user who resolved this thread.
resolving_comment_id: Option<String>INTERNAL The child comment that resolves this thread.
quoted_text: Option<String>The text that this comment references. Only defined for inline comments.
subscriber_ids: Option<Vec<String>>INTERNAL The identifiers of the users subscribing to this comment.
do_not_subscribe_to_issue: Option<bool>INTERNAL Flag to prevent auto subscription to the issue the comment is updated on.
Trait Implementations§
Source§impl Clone for CommentUpdateInput
impl Clone for CommentUpdateInput
Source§fn clone(&self) -> CommentUpdateInput
fn clone(&self) -> CommentUpdateInput
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 CommentUpdateInput
impl Debug for CommentUpdateInput
Source§impl Default for CommentUpdateInput
impl Default for CommentUpdateInput
Source§fn default() -> CommentUpdateInput
fn default() -> CommentUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentUpdateInput
impl<'de> Deserialize<'de> for CommentUpdateInput
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 CommentUpdateInput
impl RefUnwindSafe for CommentUpdateInput
impl Send for CommentUpdateInput
impl Sync for CommentUpdateInput
impl Unpin for CommentUpdateInput
impl UnwindSafe for CommentUpdateInput
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