pub struct DiscussionPreview {
pub id: u32,
pub author: Box<str>,
pub title: Box<str>,
pub created_time_seconds: i64,
pub activity_time_seconds: i64,
pub rating: i32,
pub tags: Vec<Box<str>>,
pub latest_comment: Option<DiscussionComment>,
pub url: Box<str>,
}Expand description
A public Codeforces blog entry surfaced by the recent activity feed
Fields§
§id: u32§title: Box<str>§created_time_seconds: i64§activity_time_seconds: i64§rating: i32§latest_comment: Option<DiscussionComment>§url: Box<str>Trait Implementations§
Source§impl Debug for DiscussionPreview
impl Debug for DiscussionPreview
impl Eq for DiscussionPreview
Source§impl PartialEq for DiscussionPreview
impl PartialEq for DiscussionPreview
impl StructuralPartialEq for DiscussionPreview
Auto Trait Implementations§
impl Freeze for DiscussionPreview
impl RefUnwindSafe for DiscussionPreview
impl Send for DiscussionPreview
impl Sync for DiscussionPreview
impl Unpin for DiscussionPreview
impl UnsafeUnpin for DiscussionPreview
impl UnwindSafe for DiscussionPreview
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