pub struct FetchedFile {
pub path: PathBuf,
pub build_id: String,
pub from_cache: bool,
pub url: Option<String>,
}Fields§
§path: PathBuf§build_id: String§from_cache: bool§url: Option<String>Trait Implementations§
Source§impl Clone for FetchedFile
impl Clone for FetchedFile
Source§fn clone(&self) -> FetchedFile
fn clone(&self) -> FetchedFile
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 FetchedFile
impl Debug for FetchedFile
impl Eq for FetchedFile
Source§impl PartialEq for FetchedFile
impl PartialEq for FetchedFile
impl StructuralPartialEq for FetchedFile
Auto Trait Implementations§
impl Freeze for FetchedFile
impl RefUnwindSafe for FetchedFile
impl Send for FetchedFile
impl Sync for FetchedFile
impl Unpin for FetchedFile
impl UnsafeUnpin for FetchedFile
impl UnwindSafe for FetchedFile
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