pub struct InstallHooksResult {
pub commands_run: Vec<String>,
}Expand description
Result of hook installation.
Contains information about what was done during installation, including any shell commands that were executed.
Fields§
§commands_run: Vec<String>Shell commands that were executed during installation. Each string is the full command that was run.
Trait Implementations§
Source§impl Clone for InstallHooksResult
impl Clone for InstallHooksResult
Source§fn clone(&self) -> InstallHooksResult
fn clone(&self) -> InstallHooksResult
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 InstallHooksResult
impl Debug for InstallHooksResult
Source§impl Default for InstallHooksResult
impl Default for InstallHooksResult
Source§fn default() -> InstallHooksResult
fn default() -> InstallHooksResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InstallHooksResult
impl RefUnwindSafe for InstallHooksResult
impl Send for InstallHooksResult
impl Sync for InstallHooksResult
impl Unpin for InstallHooksResult
impl UnwindSafe for InstallHooksResult
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