pub struct HookProgressEvent {
pub hook_id: String,
pub hook_name: String,
pub hook_event: String,
pub stdout: String,
pub stderr: String,
pub output: String,
}Expand description
Hook progress event
Fields§
§hook_id: String§hook_name: String§hook_event: String§stdout: String§stderr: String§output: StringTrait Implementations§
Source§impl Clone for HookProgressEvent
impl Clone for HookProgressEvent
Source§fn clone(&self) -> HookProgressEvent
fn clone(&self) -> HookProgressEvent
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 HookProgressEvent
impl RefUnwindSafe for HookProgressEvent
impl Send for HookProgressEvent
impl Sync for HookProgressEvent
impl Unpin for HookProgressEvent
impl UnsafeUnpin for HookProgressEvent
impl UnwindSafe for HookProgressEvent
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