pub struct DefineVideoStream {
pub id: CharacterId,
pub num_frames: u16,
pub width: u16,
pub height: u16,
pub is_smoothed: bool,
pub deblocking: VideoDeblocking,
pub codec: VideoCodec,
}
Fields§
§id: CharacterId
§num_frames: u16
§width: u16
§height: u16
§is_smoothed: bool
§deblocking: VideoDeblocking
§codec: VideoCodec
Trait Implementations§
Source§impl Clone for DefineVideoStream
impl Clone for DefineVideoStream
Source§fn clone(&self) -> DefineVideoStream
fn clone(&self) -> DefineVideoStream
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DefineVideoStream
impl Debug for DefineVideoStream
Source§impl PartialEq for DefineVideoStream
impl PartialEq for DefineVideoStream
impl Eq for DefineVideoStream
impl StructuralPartialEq for DefineVideoStream
Auto Trait Implementations§
impl Freeze for DefineVideoStream
impl RefUnwindSafe for DefineVideoStream
impl Send for DefineVideoStream
impl Sync for DefineVideoStream
impl Unpin for DefineVideoStream
impl UnwindSafe for DefineVideoStream
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