pub struct ForumFeed {
pub thread_id: ForumThreadId,
pub post_id: ForumPostId,
pub user: ForumThreadAuthor,
pub title: String,
pub text: String,
pub timestamp: i32,
pub is_seen: bool,
pub type: ForumFeedTypeEnum,
}
Fields§
§thread_id: ForumThreadId
§post_id: ForumPostId
§user: ForumThreadAuthor
§title: String
§text: String
§timestamp: i32
§is_seen: bool
§type: ForumFeedTypeEnum
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ForumFeed
impl<'de> Deserialize<'de> for ForumFeed
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
impl StructuralPartialEq for ForumFeed
Auto Trait Implementations§
impl Freeze for ForumFeed
impl RefUnwindSafe for ForumFeed
impl Send for ForumFeed
impl Sync for ForumFeed
impl Unpin for ForumFeed
impl UnwindSafe for ForumFeed
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