pub struct HookResponseData {
pub hook_id: String,
pub hook_name: String,
pub hook_event: String,
pub output: String,
pub stdout: String,
pub stderr: String,
pub exit_code: Option<i32>,
pub outcome: HookOutcome,
}Fields§
§hook_id: String§hook_name: String§hook_event: String§output: String§stdout: String§stderr: String§exit_code: Option<i32>§outcome: HookOutcomeAuto Trait Implementations§
impl Freeze for HookResponseData
impl RefUnwindSafe for HookResponseData
impl Send for HookResponseData
impl Sync for HookResponseData
impl Unpin for HookResponseData
impl UnsafeUnpin for HookResponseData
impl UnwindSafe for HookResponseData
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