pub struct Comment {
pub author_name: String,
pub content: String,
pub id: String,
pub post_id: String,
pub published: DateTime<FixedOffset>,
pub title: String,
}
Fields§
§content: String
§id: String
§post_id: String
§published: DateTime<FixedOffset>
§title: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Comment
impl RefUnwindSafe for Comment
impl Send for Comment
impl Sync for Comment
impl Unpin for Comment
impl UnwindSafe for Comment
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