pub struct CommandHookResult {
pub success: bool,
pub stdout: String,
}Expand description
Result of executing a command hook.
Fields§
§success: bool§stdout: StringTrait Implementations§
Source§impl Clone for CommandHookResult
impl Clone for CommandHookResult
Source§fn clone(&self) -> CommandHookResult
fn clone(&self) -> CommandHookResult
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 CommandHookResult
impl RefUnwindSafe for CommandHookResult
impl Send for CommandHookResult
impl Sync for CommandHookResult
impl Unpin for CommandHookResult
impl UnsafeUnpin for CommandHookResult
impl UnwindSafe for CommandHookResult
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