Struct azure_devops_rust_api::wit::models::CommentCreate
source · pub struct CommentCreate {
pub text: Option<String>,
}
Expand description
Represents a request to create a work item comment.
Fields§
§text: Option<String>
The text of the comment.
Implementations§
source§impl CommentCreate
impl CommentCreate
Trait Implementations§
source§impl Clone for CommentCreate
impl Clone for CommentCreate
source§fn clone(&self) -> CommentCreate
fn clone(&self) -> CommentCreate
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 CommentCreate
impl Debug for CommentCreate
source§impl Default for CommentCreate
impl Default for CommentCreate
source§fn default() -> CommentCreate
fn default() -> CommentCreate
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CommentCreate
impl<'de> Deserialize<'de> for CommentCreate
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 CommentCreate
impl PartialEq for CommentCreate
source§fn eq(&self, other: &CommentCreate) -> bool
fn eq(&self, other: &CommentCreate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CommentCreate
impl Serialize for CommentCreate
impl StructuralPartialEq for CommentCreate
Auto Trait Implementations§
impl RefUnwindSafe for CommentCreate
impl Send for CommentCreate
impl Sync for CommentCreate
impl Unpin for CommentCreate
impl UnwindSafe for CommentCreate
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