pub struct PublicNoteItem {
pub cvid: u64,
pub title: String,
pub summary: String,
pub pubtime: String,
pub web_url: String,
pub message: String,
pub author: PublicNoteAuthor,
pub likes: u64,
pub has_like: bool,
}
Expand description
稿件公开笔记列表项
Fields§
§cvid: u64
§title: String
§summary: String
§pubtime: String
§web_url: String
§message: String
§likes: u64
§has_like: bool
Trait Implementations§
Source§impl Clone for PublicNoteItem
impl Clone for PublicNoteItem
Source§fn clone(&self) -> PublicNoteItem
fn clone(&self) -> PublicNoteItem
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 PublicNoteItem
impl Debug for PublicNoteItem
Source§impl<'de> Deserialize<'de> for PublicNoteItem
impl<'de> Deserialize<'de> for PublicNoteItem
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
Auto Trait Implementations§
impl Freeze for PublicNoteItem
impl RefUnwindSafe for PublicNoteItem
impl Send for PublicNoteItem
impl Sync for PublicNoteItem
impl Unpin for PublicNoteItem
impl UnwindSafe for PublicNoteItem
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