pub struct PublicNoteAuthor {
pub mid: u64,
pub name: String,
pub face: String,
pub level: u8,
pub vip_info: Value,
pub pendant: Value,
}
Expand description
公开笔记的作者信息
Fields§
§mid: u64
§name: String
§face: String
§level: u8
§vip_info: Value
§pendant: Value
Trait Implementations§
Source§impl Clone for PublicNoteAuthor
impl Clone for PublicNoteAuthor
Source§fn clone(&self) -> PublicNoteAuthor
fn clone(&self) -> PublicNoteAuthor
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 PublicNoteAuthor
impl Debug for PublicNoteAuthor
Source§impl<'de> Deserialize<'de> for PublicNoteAuthor
impl<'de> Deserialize<'de> for PublicNoteAuthor
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 PublicNoteAuthor
impl RefUnwindSafe for PublicNoteAuthor
impl Send for PublicNoteAuthor
impl Sync for PublicNoteAuthor
impl Unpin for PublicNoteAuthor
impl UnwindSafe for PublicNoteAuthor
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