pub struct DownloadedPart {
pub id: Option<String>,
pub name: Option<String>,
pub data_type: Option<String>,
pub domain_id: Option<String>,
pub path: PathBuf,
pub root: PathBuf,
pub relative_path: PathBuf,
pub extracted_paths: Vec<PathBuf>,
}Expand description
Representation of one multipart section downloaded from Domain.
Fields§
§id: Option<String>§name: Option<String>§data_type: Option<String>§domain_id: Option<String>§path: PathBuf§root: PathBuf§relative_path: PathBuf§extracted_paths: Vec<PathBuf>Trait Implementations§
Source§impl Clone for DownloadedPart
impl Clone for DownloadedPart
Source§fn clone(&self) -> DownloadedPart
fn clone(&self) -> DownloadedPart
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 moreAuto Trait Implementations§
impl Freeze for DownloadedPart
impl RefUnwindSafe for DownloadedPart
impl Send for DownloadedPart
impl Sync for DownloadedPart
impl Unpin for DownloadedPart
impl UnwindSafe for DownloadedPart
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