pub struct PathConfigReport {
pub configured: bool,
pub modified_files: Vec<PathBuf>,
pub already_configured_files: Vec<PathBuf>,
pub notes: Vec<String>,
}Expand description
Result of a PATH configuration attempt.
Fields§
§configured: boolTrue when at least one shell rc file already contains, or now contains, the spool PATH block.
modified_files: Vec<PathBuf>Files newly written to during this run.
already_configured_files: Vec<PathBuf>Files that already had the PATH block before this run.
notes: Vec<String>Trait Implementations§
Source§impl Clone for PathConfigReport
impl Clone for PathConfigReport
Source§fn clone(&self) -> PathConfigReport
fn clone(&self) -> PathConfigReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PathConfigReport
impl Debug for PathConfigReport
Source§impl Default for PathConfigReport
impl Default for PathConfigReport
Source§fn default() -> PathConfigReport
fn default() -> PathConfigReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PathConfigReport
impl RefUnwindSafe for PathConfigReport
impl Send for PathConfigReport
impl Sync for PathConfigReport
impl Unpin for PathConfigReport
impl UnsafeUnpin for PathConfigReport
impl UnwindSafe for PathConfigReport
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