pub struct CommentInfo {
pub created_at: UtcDateTime,
pub content: String,
pub author: UserId,
}Fields§
§created_at: UtcDateTime§content: StringTrait Implementations§
Source§impl Clone for CommentInfo
impl Clone for CommentInfo
Source§fn clone(&self) -> CommentInfo
fn clone(&self) -> CommentInfo
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 CommentInfo
impl Debug for CommentInfo
Auto Trait Implementations§
impl Freeze for CommentInfo
impl RefUnwindSafe for CommentInfo
impl Send for CommentInfo
impl Sync for CommentInfo
impl Unpin for CommentInfo
impl UnwindSafe for CommentInfo
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