pub struct CFComment {
pub id: i64,
pub creation_time_seconds: i64,
pub commentator_handle: String,
pub locale: String,
pub text: String,
pub parent_comment_id: Option<i64>,
pub rating: i64,
}
Expand description
Struct representing a Codeforces blog entry comment.
Fields§
§id: i64
§creation_time_seconds: i64
§commentator_handle: String
§locale: String
§text: String
§parent_comment_id: Option<i64>
§rating: i64
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CFComment
impl<'de> Deserialize<'de> for CFComment
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 Eq for CFComment
impl StructuralPartialEq for CFComment
Auto Trait Implementations§
impl Freeze for CFComment
impl RefUnwindSafe for CFComment
impl Send for CFComment
impl Sync for CFComment
impl Unpin for CFComment
impl UnwindSafe for CFComment
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.