pub struct PackageFiles {
pub package: PackageInfo,
pub files: Vec<PathBuf>,
}Expand description
Mapping of files to a single package.
This is a data transfer object with intentionally public fields for direct access.
Fields§
§package: PackageInfo§files: Vec<PathBuf>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PackageFiles
impl RefUnwindSafe for PackageFiles
impl Send for PackageFiles
impl Sync for PackageFiles
impl Unpin for PackageFiles
impl UnsafeUnpin for PackageFiles
impl UnwindSafe for PackageFiles
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