pub struct ProgressEndEventBody {
pub progress_id: String,
pub message: Option<String>,
}Expand description
Arguments for a ProgressEnd event.
Fields§
§progress_id: StringThe ID that was introduced in the initial ProgressStartEvent.
message: Option<String>More detailed progress message. If omitted, the previous message (if any) is used.
Trait Implementations§
Source§impl Clone for ProgressEndEventBody
impl Clone for ProgressEndEventBody
Source§fn clone(&self) -> ProgressEndEventBody
fn clone(&self) -> ProgressEndEventBody
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 ProgressEndEventBody
impl Debug for ProgressEndEventBody
Source§impl Default for ProgressEndEventBody
impl Default for ProgressEndEventBody
Source§fn default() -> ProgressEndEventBody
fn default() -> ProgressEndEventBody
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProgressEndEventBody
impl RefUnwindSafe for ProgressEndEventBody
impl Send for ProgressEndEventBody
impl Sync for ProgressEndEventBody
impl Unpin for ProgressEndEventBody
impl UnsafeUnpin for ProgressEndEventBody
impl UnwindSafe for ProgressEndEventBody
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