pub struct CommentUpdate {
pub text: Option<String>,
}Expand description
Represents a request to update a work item comment.
Fields§
§text: Option<String>The updated text of the comment.
Implementations§
Source§impl CommentUpdate
impl CommentUpdate
Trait Implementations§
Source§impl Clone for CommentUpdate
impl Clone for CommentUpdate
Source§fn clone(&self) -> CommentUpdate
fn clone(&self) -> CommentUpdate
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 CommentUpdate
impl Debug for CommentUpdate
Source§impl Default for CommentUpdate
impl Default for CommentUpdate
Source§fn default() -> CommentUpdate
fn default() -> CommentUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentUpdate
impl<'de> Deserialize<'de> for CommentUpdate
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 CommentUpdate
impl PartialEq for CommentUpdate
Source§impl Serialize for CommentUpdate
impl Serialize for CommentUpdate
impl StructuralPartialEq for CommentUpdate
Auto Trait Implementations§
impl Freeze for CommentUpdate
impl RefUnwindSafe for CommentUpdate
impl Send for CommentUpdate
impl Sync for CommentUpdate
impl Unpin for CommentUpdate
impl UnwindSafe for CommentUpdate
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