pub struct RefreshEntry {
pub pack: String,
pub handler: String,
pub filename: String,
pub source_path: String,
pub action: RefreshAction,
}Expand description
One row in the refresh report.
Fields§
§pack: String§handler: String§filename: String§source_path: StringAbsolute source path. The CLI renderer (and the JSON output)
both surface this verbatim — refresh entries are typically a
short list, and the absolute path is unambiguous when the
user wants to plug --list-paths output into a watcher.
action: RefreshActionTrait Implementations§
Source§impl Clone for RefreshEntry
impl Clone for RefreshEntry
Source§fn clone(&self) -> RefreshEntry
fn clone(&self) -> RefreshEntry
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 RefreshEntry
impl Debug for RefreshEntry
Auto Trait Implementations§
impl Freeze for RefreshEntry
impl RefUnwindSafe for RefreshEntry
impl Send for RefreshEntry
impl Sync for RefreshEntry
impl Unpin for RefreshEntry
impl UnsafeUnpin for RefreshEntry
impl UnwindSafe for RefreshEntry
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