pub struct BackendRequest<Handle> {
pub request_id: BackendRequestId,
pub meta: FrameMetadata,
pub handle: Handle,
pub tunings: Tunings,
}
Expand description
Request package that is offered to StatefulVideoEncoderBackend
for processing
Fields§
§request_id: BackendRequestId
Request’s unique identifier
meta: FrameMetadata
Frame’s metadata
handle: Handle
Frame’s handle
tunings: Tunings
Tunings set for the request
Auto Trait Implementations§
impl<Handle> Freeze for BackendRequest<Handle>where
Handle: Freeze,
impl<Handle> RefUnwindSafe for BackendRequest<Handle>where
Handle: RefUnwindSafe,
impl<Handle> Send for BackendRequest<Handle>where
Handle: Send,
impl<Handle> Sync for BackendRequest<Handle>where
Handle: Sync,
impl<Handle> Unpin for BackendRequest<Handle>where
Handle: Unpin,
impl<Handle> UnwindSafe for BackendRequest<Handle>where
Handle: UnwindSafe,
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