pub struct HookProgress {
pub entry_type: String,
pub hook_event: HookEvent,
pub hook_name: String,
pub command: String,
pub prompt_text: Option<String>,
pub status_message: Option<String>,
}Expand description
Hook progress message.
Fields§
§entry_type: String§hook_event: HookEvent§hook_name: String§command: String§prompt_text: Option<String>§status_message: Option<String>Trait Implementations§
Source§impl Clone for HookProgress
impl Clone for HookProgress
Source§fn clone(&self) -> HookProgress
fn clone(&self) -> HookProgress
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 HookProgress
impl Debug for HookProgress
Source§impl<'de> Deserialize<'de> for HookProgress
impl<'de> Deserialize<'de> for HookProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HookProgress
impl RefUnwindSafe for HookProgress
impl Send for HookProgress
impl Sync for HookProgress
impl Unpin for HookProgress
impl UnsafeUnpin for HookProgress
impl UnwindSafe for HookProgress
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