pub struct TransitProcess {
pub copied_bytes: u64,
pub total_bytes: u64,
}
Expand description
A structure which stores information about the current status of a file that’s copied or moved. .
Fields§
§copied_bytes: u64
Copied bytes on this time.
total_bytes: u64
All the bytes which should to copy or move.
Auto Trait Implementations§
impl Freeze for TransitProcess
impl RefUnwindSafe for TransitProcess
impl Send for TransitProcess
impl Sync for TransitProcess
impl Unpin for TransitProcess
impl UnwindSafe for TransitProcess
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