pub struct ToClient {
pub fno: u64,
pub firehose_frame_data_url: String,
pub valid_display: Option<Shape>,
pub annotations: Vec<DrawableShape>,
pub ts_rfc3339: String,
pub ck: ConnectionKey,
}Expand description
Message structure sent from server to client containing video frame data and annotations.
This structure encapsulates a complete video frame with all associated metadata, annotations, and timing information for display in the client application.
Fields§
§fno: u64Frame number for ordering and synchronization
firehose_frame_data_url: StringBase64-encoded JPEG image data as a data URL
valid_display: Option<Shape>Indicates which region of the entire image is “valid”.
For example, when tracking, there can be image regions in which tracking is not desired. This is useful so the client can display what regions are valid.
annotations: Vec<DrawableShape>Annotations associated with this particular image, e.g. from tracking.
ts_rfc3339: StringTimestamp in RFC3339 format when the frame was sent
ck: ConnectionKeyConnection key identifying the client connection
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ToClient
impl<'de> Deserialize<'de> for ToClient
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
impl StructuralPartialEq for ToClient
Auto Trait Implementations§
impl Freeze for ToClient
impl RefUnwindSafe for ToClient
impl Send for ToClient
impl Sync for ToClient
impl Unpin for ToClient
impl UnwindSafe for ToClient
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