pub struct HookProgressData {
pub message: String,
pub temporary: Option<bool>,
}Expand description
Session event “hook.progress”. Ephemeral progress update from a running hook process
Fields§
§message: StringHuman-readable progress message from the hook process
temporary: Option<bool>When true, this status message replaces the previous temporary one instead of accumulating
Trait Implementations§
Source§impl Clone for HookProgressData
impl Clone for HookProgressData
Source§fn clone(&self) -> HookProgressData
fn clone(&self) -> HookProgressData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HookProgressData
impl Debug for HookProgressData
Source§impl Default for HookProgressData
impl Default for HookProgressData
Source§fn default() -> HookProgressData
fn default() -> HookProgressData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HookProgressData
impl<'de> Deserialize<'de> for HookProgressData
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 HookProgressData
impl RefUnwindSafe for HookProgressData
impl Send for HookProgressData
impl Sync for HookProgressData
impl Unpin for HookProgressData
impl UnsafeUnpin for HookProgressData
impl UnwindSafe for HookProgressData
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