pub struct FileMeasurement {
pub path: String,
pub ext: String,
pub raw_tokens: usize,
pub modes: Vec<ModeMeasurement>,
}Fields§
§path: String§ext: String§raw_tokens: usize§modes: Vec<ModeMeasurement>Trait Implementations§
Source§impl Clone for FileMeasurement
impl Clone for FileMeasurement
Source§fn clone(&self) -> FileMeasurement
fn clone(&self) -> FileMeasurement
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 FileMeasurement
impl RefUnwindSafe for FileMeasurement
impl Send for FileMeasurement
impl Sync for FileMeasurement
impl Unpin for FileMeasurement
impl UnsafeUnpin for FileMeasurement
impl UnwindSafe for FileMeasurement
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