pub struct ProgressEndEvent {
pub progress_id: String,
pub message: Option<String>,
}Fields§
§progress_id: StringThe ID that was introduced in the initial ‘ProgressStartEvent’.
message: Option<String>Optional, more detailed progress message. If omitted, the previous message (if any) is used.
Trait Implementations§
Source§impl Clone for ProgressEndEvent
impl Clone for ProgressEndEvent
Source§fn clone(&self) -> ProgressEndEvent
fn clone(&self) -> ProgressEndEvent
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 ProgressEndEvent
impl Debug for ProgressEndEvent
Source§impl<'de> Deserialize<'de> for ProgressEndEvent
impl<'de> Deserialize<'de> for ProgressEndEvent
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
Source§impl PartialEq for ProgressEndEvent
impl PartialEq for ProgressEndEvent
Source§impl Serialize for ProgressEndEvent
impl Serialize for ProgressEndEvent
impl Eq for ProgressEndEvent
impl StructuralPartialEq for ProgressEndEvent
Auto Trait Implementations§
impl Freeze for ProgressEndEvent
impl RefUnwindSafe for ProgressEndEvent
impl Send for ProgressEndEvent
impl Sync for ProgressEndEvent
impl Unpin for ProgressEndEvent
impl UnwindSafe for ProgressEndEvent
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