pub struct LiveCaptureUpdate {
pub stats: CaptureStatsDto,
pub messages_html: String,
pub signals_html: String,
pub frames_html: String,
pub errors_html: String,
pub stats_html: StatsHtml,
pub message_count: u32,
pub signal_count: u32,
pub frame_count: usize,
pub error_count: u32,
}Expand description
Periodic update sent to frontend during live capture.
Fields§
§stats: CaptureStatsDto§messages_html: StringPre-rendered HTML for message monitor table body.
signals_html: StringPre-rendered HTML for signal monitor container.
frames_html: StringPre-rendered HTML for frame stream table body.
errors_html: StringPre-rendered HTML for error monitor table body.
stats_html: StatsHtmlPre-formatted stats strings.
message_count: u32Badge counts for tabs.
signal_count: u32§frame_count: usize§error_count: u32Trait Implementations§
Source§impl Clone for LiveCaptureUpdate
impl Clone for LiveCaptureUpdate
Source§fn clone(&self) -> LiveCaptureUpdate
fn clone(&self) -> LiveCaptureUpdate
Returns a duplicate 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 LiveCaptureUpdate
impl Debug for LiveCaptureUpdate
Source§impl<'de> Deserialize<'de> for LiveCaptureUpdate
impl<'de> Deserialize<'de> for LiveCaptureUpdate
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
Auto Trait Implementations§
impl Freeze for LiveCaptureUpdate
impl RefUnwindSafe for LiveCaptureUpdate
impl Send for LiveCaptureUpdate
impl Sync for LiveCaptureUpdate
impl Unpin for LiveCaptureUpdate
impl UnwindSafe for LiveCaptureUpdate
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<'de, D, R> CommandArg<'de, R> for Dwhere
D: Deserialize<'de>,
R: Runtime,
impl<'de, D, R> CommandArg<'de, R> for Dwhere
D: Deserialize<'de>,
R: Runtime,
Source§fn from_command(command: CommandItem<'de, R>) -> Result<D, InvokeError>
fn from_command(command: CommandItem<'de, R>) -> Result<D, InvokeError>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more