pub struct ProjectSize {
pub artifact_size: u64,
pub non_artifact_size: u64,
pub dirs: Vec<(String, u64, bool)>,
}
Fields§
§artifact_size: u64
§non_artifact_size: u64
§dirs: Vec<(String, u64, bool)>
Trait Implementations§
Source§impl Clone for ProjectSize
impl Clone for ProjectSize
Source§fn clone(&self) -> ProjectSize
fn clone(&self) -> ProjectSize
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 ProjectSize
impl RefUnwindSafe for ProjectSize
impl Send for ProjectSize
impl Sync for ProjectSize
impl Unpin for ProjectSize
impl UnwindSafe for ProjectSize
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