pub struct PackageList {
pub install: Vec<PackageName>,
pub uninstall: Vec<PackageName>,
pub update: Vec<PackageName>,
pub install_size: u64,
pub network_size: u64,
pub uninstall_size: u64,
}Fields§
§install: Vec<PackageName>§uninstall: Vec<PackageName>§update: Vec<PackageName>§install_size: u64§network_size: u64§uninstall_size: u64Implementations§
Trait Implementations§
Source§impl Clone for PackageList
impl Clone for PackageList
Source§fn clone(&self) -> PackageList
fn clone(&self) -> PackageList
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 moreSource§impl Debug for PackageList
impl Debug for PackageList
Source§impl Default for PackageList
impl Default for PackageList
Source§fn default() -> PackageList
fn default() -> PackageList
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PackageList
impl RefUnwindSafe for PackageList
impl Send for PackageList
impl Sync for PackageList
impl Unpin for PackageList
impl UnsafeUnpin for PackageList
impl UnwindSafe for PackageList
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