pub struct StoppedEvent {
pub body: StoppedEventBody,
pub event: String,
pub seq: i64,
pub type_: String,
}
Fields§
§body: StoppedEventBody
Event-specific information.
event: String
Type of event.
seq: i64
Sequence number.
type_: String
Message type.
Trait Implementations§
Source§impl Clone for StoppedEvent
impl Clone for StoppedEvent
Source§fn clone(&self) -> StoppedEvent
fn clone(&self) -> StoppedEvent
Returns a copy 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 StoppedEvent
impl Debug for StoppedEvent
Source§impl<'de> Deserialize<'de> for StoppedEvent
impl<'de> Deserialize<'de> for StoppedEvent
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 StoppedEvent
impl PartialEq for StoppedEvent
Source§impl Serialize for StoppedEvent
impl Serialize for StoppedEvent
impl StructuralPartialEq for StoppedEvent
Auto Trait Implementations§
impl Freeze for StoppedEvent
impl RefUnwindSafe for StoppedEvent
impl Send for StoppedEvent
impl Sync for StoppedEvent
impl Unpin for StoppedEvent
impl UnwindSafe for StoppedEvent
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