pub struct TimedIncomingEvent {
pub time_offset_secs: f64,
pub event: IncomingEvent,
}Expand description
An incoming event with a time offset.
Fields§
§time_offset_secs: f64The time offset in seconds from the start of the node.
event: IncomingEventThe incoming event.
Trait Implementations§
Source§impl Debug for TimedIncomingEvent
impl Debug for TimedIncomingEvent
Source§impl<'de> Deserialize<'de> for TimedIncomingEvent
impl<'de> Deserialize<'de> for TimedIncomingEvent
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 TimedIncomingEvent
impl PartialEq for TimedIncomingEvent
Source§impl Serialize for TimedIncomingEvent
impl Serialize for TimedIncomingEvent
impl StructuralPartialEq for TimedIncomingEvent
Auto Trait Implementations§
impl Freeze for TimedIncomingEvent
impl RefUnwindSafe for TimedIncomingEvent
impl Send for TimedIncomingEvent
impl Sync for TimedIncomingEvent
impl Unpin for TimedIncomingEvent
impl UnwindSafe for TimedIncomingEvent
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