pub struct CommentFull {
pub id: Option<String>,
pub type: Option<CommentType>,
pub is_reply_comment: Option<bool>,
pub message: Option<String>,
pub created_by: Option<UserMini>,
pub created_at: Option<DateTime<Utc>>,
pub modified_at: Option<DateTime<Utc>>,
pub item: Option<CommentItem>,
pub tagged_message: Option<String>,
}Fields§
§id: Option<String>§type: Option<CommentType>§is_reply_comment: Option<bool>§message: Option<String>§created_by: Option<UserMini>§created_at: Option<DateTime<Utc>>§modified_at: Option<DateTime<Utc>>§item: Option<CommentItem>§tagged_message: Option<String>Trait Implementations§
Source§impl Clone for CommentFull
impl Clone for CommentFull
Source§fn clone(&self) -> CommentFull
fn clone(&self) -> CommentFull
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 CommentFull
impl Debug for CommentFull
Source§impl Default for CommentFull
impl Default for CommentFull
Source§fn default() -> CommentFull
fn default() -> CommentFull
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommentFull
impl<'de> Deserialize<'de> for CommentFull
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 CommentFull
impl PartialEq for CommentFull
Source§impl Serialize for CommentFull
impl Serialize for CommentFull
impl StructuralPartialEq for CommentFull
Auto Trait Implementations§
impl Freeze for CommentFull
impl RefUnwindSafe for CommentFull
impl Send for CommentFull
impl Sync for CommentFull
impl Unpin for CommentFull
impl UnsafeUnpin for CommentFull
impl UnwindSafe for CommentFull
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