pub struct PrivateNoteInfoData {
pub arc: PrivateNoteArc,
pub audit_status: u8,
pub cid_count: u32,
pub content: String,
pub forbid_note_entrance: bool,
pub pub_reason: Option<String>,
pub pub_status: u8,
pub pub_version: u32,
pub summary: String,
pub tags: Vec<PrivateNoteTag>,
pub title: String,
}
Expand description
私有笔记的响应数据
Fields§
§arc: PrivateNoteArc
§audit_status: u8
§cid_count: u32
§content: String
§forbid_note_entrance: bool
§pub_reason: Option<String>
§pub_status: u8
§pub_version: u32
§summary: String
§title: String
Trait Implementations§
Source§impl Clone for PrivateNoteInfoData
impl Clone for PrivateNoteInfoData
Source§fn clone(&self) -> PrivateNoteInfoData
fn clone(&self) -> PrivateNoteInfoData
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 PrivateNoteInfoData
impl Debug for PrivateNoteInfoData
Source§impl<'de> Deserialize<'de> for PrivateNoteInfoData
impl<'de> Deserialize<'de> for PrivateNoteInfoData
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 PrivateNoteInfoData
impl RefUnwindSafe for PrivateNoteInfoData
impl Send for PrivateNoteInfoData
impl Sync for PrivateNoteInfoData
impl Unpin for PrivateNoteInfoData
impl UnwindSafe for PrivateNoteInfoData
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