#[non_exhaustive]pub struct BlobEvent {
pub blob: Blob,
pub timecode: f64,
pub event: Event,
}
Expand description
Interface for the dataavailable
event, containing the recorded data
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.blob: Blob
The encoded Blob whose type attribute indicates the encoding of the blob data.
timecode: f64
The difference between the timestamp of the first chunk in data and the timestamp of the first chunk in the first BlobEvent produced by this recorder
event: Event
Inherits from this base Event
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BlobEvent
impl RefUnwindSafe for BlobEvent
impl Send for BlobEvent
impl Sync for BlobEvent
impl Unpin for BlobEvent
impl UnwindSafe for BlobEvent
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