pub struct ProgressEndEventBody {
pub progress_id: String,
pub message: Option<String>,
/* private fields */
}
Fields§
§progress_id: String
The 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.
Implementations§
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§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ProgressEndEventBody
impl Debug for ProgressEndEventBody
Source§impl<'de> Deserialize<'de> for ProgressEndEventBody
impl<'de> Deserialize<'de> for ProgressEndEventBody
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 From<ProgressEndEventBody> for Event
impl From<ProgressEndEventBody> for Event
Source§fn from(body: ProgressEndEventBody) -> Self
fn from(body: ProgressEndEventBody) -> Self
Converts to this type from the input type.
Source§impl From<ProgressEndEventBody> for ProtocolMessageContent
impl From<ProgressEndEventBody> for ProtocolMessageContent
Source§fn from(body: ProgressEndEventBody) -> Self
fn from(body: ProgressEndEventBody) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ProgressEndEventBody
impl PartialEq for ProgressEndEventBody
Source§impl Serialize for ProgressEndEventBody
impl Serialize for ProgressEndEventBody
impl Eq for ProgressEndEventBody
impl StructuralPartialEq for ProgressEndEventBody
Auto Trait Implementations§
impl Freeze for ProgressEndEventBody
impl RefUnwindSafe for ProgressEndEventBody
impl Send for ProgressEndEventBody
impl Sync for ProgressEndEventBody
impl Unpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.