pub struct Discussion {
pub id: u32,
pub author: Box<str>,
pub title: Box<str>,
pub content_html: Box<str>,
pub created_time_seconds: i64,
pub modified_time_seconds: Option<i64>,
pub rating: i32,
pub tags: Vec<Box<str>>,
pub comments: Vec<DiscussionComment>,
pub url: Box<str>,
}Expand description
A public Codeforces blog entry and its public comments
Fields§
§id: u32§title: Box<str>§content_html: Box<str>§created_time_seconds: i64§modified_time_seconds: Option<i64>§rating: i32§comments: Vec<DiscussionComment>§url: Box<str>Trait Implementations§
Source§impl Debug for Discussion
impl Debug for Discussion
impl Eq for Discussion
Source§impl PartialEq for Discussion
impl PartialEq for Discussion
impl StructuralPartialEq for Discussion
Auto Trait Implementations§
impl Freeze for Discussion
impl RefUnwindSafe for Discussion
impl Send for Discussion
impl Sync for Discussion
impl Unpin for Discussion
impl UnsafeUnpin for Discussion
impl UnwindSafe for Discussion
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