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