pub struct ClickUpComment {
pub id: String,
pub comment_text: String,
pub user: Option<ClickUpUser>,
pub date: Option<String>,
}Fields§
§id: String§comment_text: String§user: Option<ClickUpUser>§date: Option<String>Trait Implementations§
Source§impl Clone for ClickUpComment
impl Clone for ClickUpComment
Source§fn clone(&self) -> ClickUpComment
fn clone(&self) -> ClickUpComment
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 ClickUpComment
impl Debug for ClickUpComment
Source§impl<'de> Deserialize<'de> for ClickUpComment
impl<'de> Deserialize<'de> for ClickUpComment
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 ClickUpComment
impl RefUnwindSafe for ClickUpComment
impl Send for ClickUpComment
impl Sync for ClickUpComment
impl Unpin for ClickUpComment
impl UnsafeUnpin for ClickUpComment
impl UnwindSafe for ClickUpComment
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