pub struct CFBlogEntry {
pub id: i64,
pub original_locale: String,
pub creation_time_seconds: i64,
pub author_handle: String,
pub title: String,
pub content: Option<String>,
pub locale: String,
pub modification_time_seconds: i64,
pub allow_view_history: bool,
pub tags: Vec<String>,
pub rating: i64,
}
Expand description
Struct representing a Codeforces blog entry.
Fields§
§id: i64
§original_locale: String
§creation_time_seconds: i64
§title: String
§content: Option<String>
§locale: String
§modification_time_seconds: i64
§allow_view_history: bool
§rating: i64
Trait Implementations§
Source§impl Clone for CFBlogEntry
impl Clone for CFBlogEntry
Source§fn clone(&self) -> CFBlogEntry
fn clone(&self) -> CFBlogEntry
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 CFBlogEntry
impl Debug for CFBlogEntry
Source§impl<'de> Deserialize<'de> for CFBlogEntry
impl<'de> Deserialize<'de> for CFBlogEntry
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
Source§impl PartialEq for CFBlogEntry
impl PartialEq for CFBlogEntry
Source§impl Serialize for CFBlogEntry
impl Serialize for CFBlogEntry
impl Eq for CFBlogEntry
impl StructuralPartialEq for CFBlogEntry
Auto Trait Implementations§
impl Freeze for CFBlogEntry
impl RefUnwindSafe for CFBlogEntry
impl Send for CFBlogEntry
impl Sync for CFBlogEntry
impl Unpin for CFBlogEntry
impl UnwindSafe for CFBlogEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.