pub struct PrivateNoteTag {
pub cid: u64,
pub status: u8,
pub index: u32,
pub seconds: u32,
pub pos: u32,
}
Expand description
私有笔记的标签
Fields§
§cid: u64
§status: u8
§index: u32
§seconds: u32
§pos: u32
Trait Implementations§
Source§impl Clone for PrivateNoteTag
impl Clone for PrivateNoteTag
Source§fn clone(&self) -> PrivateNoteTag
fn clone(&self) -> PrivateNoteTag
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 PrivateNoteTag
impl Debug for PrivateNoteTag
Source§impl<'de> Deserialize<'de> for PrivateNoteTag
impl<'de> Deserialize<'de> for PrivateNoteTag
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 PrivateNoteTag
impl RefUnwindSafe for PrivateNoteTag
impl Send for PrivateNoteTag
impl Sync for PrivateNoteTag
impl Unpin for PrivateNoteTag
impl UnwindSafe for PrivateNoteTag
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