pub struct ProgressEndEvent {
pub progress_id: String,
pub message: Option<String>,
}
Expand description
The event signals the end of the progress reporting with a final message.
This event should only be sent if the corresponding capability supportsProgressReporting
is true.
Fields§
§progress_id: String
The 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 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
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