pub struct DownloadArchiveEntryRecord {
pub content_key: String,
pub index: u32,
pub aid: u64,
pub bvid: Option<String>,
pub cid: u64,
pub epid: Option<u64>,
pub title: String,
pub directory: PathBuf,
pub files: Vec<PathBuf>,
pub mux_output: Option<PathBuf>,
}Fields§
§content_key: String§index: u32§aid: u64§bvid: Option<String>§cid: u64§epid: Option<u64>§title: String§directory: PathBuf§files: Vec<PathBuf>§mux_output: Option<PathBuf>Trait Implementations§
Source§impl Clone for DownloadArchiveEntryRecord
impl Clone for DownloadArchiveEntryRecord
Source§fn clone(&self) -> DownloadArchiveEntryRecord
fn clone(&self) -> DownloadArchiveEntryRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DownloadArchiveEntryRecord
impl Debug for DownloadArchiveEntryRecord
Source§impl<'de> Deserialize<'de> for DownloadArchiveEntryRecord
impl<'de> Deserialize<'de> for DownloadArchiveEntryRecord
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
impl Eq for DownloadArchiveEntryRecord
Source§impl PartialEq for DownloadArchiveEntryRecord
impl PartialEq for DownloadArchiveEntryRecord
Source§fn eq(&self, other: &DownloadArchiveEntryRecord) -> bool
fn eq(&self, other: &DownloadArchiveEntryRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DownloadArchiveEntryRecord
Auto Trait Implementations§
impl Freeze for DownloadArchiveEntryRecord
impl RefUnwindSafe for DownloadArchiveEntryRecord
impl Send for DownloadArchiveEntryRecord
impl Sync for DownloadArchiveEntryRecord
impl Unpin for DownloadArchiveEntryRecord
impl UnsafeUnpin for DownloadArchiveEntryRecord
impl UnwindSafe for DownloadArchiveEntryRecord
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