pub struct FilesystemChange {
pub change_type: FilesystemChangeType,
pub path: String,
pub raw_line: String,
}
Expand description
Information about a filesystem change in a container
Fields§
§change_type: FilesystemChangeType
Type of change (Added, Deleted, Changed)
path: String
Path that was changed
raw_line: String
Raw output line
Trait Implementations§
Source§impl Clone for FilesystemChange
impl Clone for FilesystemChange
Source§fn clone(&self) -> FilesystemChange
fn clone(&self) -> FilesystemChange
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 FilesystemChange
impl RefUnwindSafe for FilesystemChange
impl Send for FilesystemChange
impl Sync for FilesystemChange
impl Unpin for FilesystemChange
impl UnwindSafe for FilesystemChange
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