pub struct ArchivedSound {
pub sound_id: String,
pub output: PathBuf,
pub bytes_written: u64,
}Expand description
Successful archive record.
Fields§
§sound_id: StringProvider page id.
output: PathBufLocal output directory.
bytes_written: u64Downloaded bytes.
Trait Implementations§
Source§impl Clone for ArchivedSound
impl Clone for ArchivedSound
Source§fn clone(&self) -> ArchivedSound
fn clone(&self) -> ArchivedSound
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 ArchivedSound
impl Debug for ArchivedSound
Source§impl<'de> Deserialize<'de> for ArchivedSound
impl<'de> Deserialize<'de> for ArchivedSound
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 ArchivedSound
Source§impl PartialEq for ArchivedSound
impl PartialEq for ArchivedSound
Source§impl Serialize for ArchivedSound
impl Serialize for ArchivedSound
impl StructuralPartialEq for ArchivedSound
Auto Trait Implementations§
impl Freeze for ArchivedSound
impl RefUnwindSafe for ArchivedSound
impl Send for ArchivedSound
impl Sync for ArchivedSound
impl Unpin for ArchivedSound
impl UnsafeUnpin for ArchivedSound
impl UnwindSafe for ArchivedSound
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