pub struct FrontendPreviewEvent {
pub submission_id: Option<String>,
pub recorded_at_ms: i64,
pub event: EventMsg,
}Expand description
One timestamped semantic event shown inside a capability preview.
Fields§
§submission_id: Option<String>Canonical message identity retained from the recorded event.
recorded_at_ms: i64§event: EventMsgTrait Implementations§
Source§impl Clone for FrontendPreviewEvent
impl Clone for FrontendPreviewEvent
Source§fn clone(&self) -> FrontendPreviewEvent
fn clone(&self) -> FrontendPreviewEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FrontendPreviewEvent
impl Debug for FrontendPreviewEvent
Source§impl<'de> Deserialize<'de> for FrontendPreviewEvent
impl<'de> Deserialize<'de> for FrontendPreviewEvent
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 FrontendPreviewEvent
impl PartialEq for FrontendPreviewEvent
Source§impl Serialize for FrontendPreviewEvent
impl Serialize for FrontendPreviewEvent
impl StructuralPartialEq for FrontendPreviewEvent
Auto Trait Implementations§
impl Freeze for FrontendPreviewEvent
impl RefUnwindSafe for FrontendPreviewEvent
impl Send for FrontendPreviewEvent
impl Sync for FrontendPreviewEvent
impl Unpin for FrontendPreviewEvent
impl UnsafeUnpin for FrontendPreviewEvent
impl UnwindSafe for FrontendPreviewEvent
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