pub struct PrivateNoteArc {
pub oid: u64,
pub status: u8,
pub oid_type: u8,
pub aid: u64,
pub bvid: Option<String>,
pub pic: Option<String>,
pub desc: Option<String>,
}
Expand description
用户私有笔记的视频信息
Fields§
§oid: u64
§status: u8
§oid_type: u8
§aid: u64
§bvid: Option<String>
§pic: Option<String>
§desc: Option<String>
Trait Implementations§
Source§impl Clone for PrivateNoteArc
impl Clone for PrivateNoteArc
Source§fn clone(&self) -> PrivateNoteArc
fn clone(&self) -> PrivateNoteArc
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 PrivateNoteArc
impl Debug for PrivateNoteArc
Source§impl<'de> Deserialize<'de> for PrivateNoteArc
impl<'de> Deserialize<'de> for PrivateNoteArc
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 PrivateNoteArc
impl RefUnwindSafe for PrivateNoteArc
impl Send for PrivateNoteArc
impl Sync for PrivateNoteArc
impl Unpin for PrivateNoteArc
impl UnwindSafe for PrivateNoteArc
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