pub struct VideoStreamInfo {
pub stream_number: u8,
pub width: u32,
pub height: u32,
pub codec_four_cc: [u8; 4],
pub extra_data: Vec<u8>,
}Fields§
§stream_number: u8§width: u32§height: u32§codec_four_cc: [u8; 4]§extra_data: Vec<u8>Trait Implementations§
Source§impl Clone for VideoStreamInfo
impl Clone for VideoStreamInfo
Source§fn clone(&self) -> VideoStreamInfo
fn clone(&self) -> VideoStreamInfo
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 moreAuto Trait Implementations§
impl Freeze for VideoStreamInfo
impl RefUnwindSafe for VideoStreamInfo
impl Send for VideoStreamInfo
impl Sync for VideoStreamInfo
impl Unpin for VideoStreamInfo
impl UnwindSafe for VideoStreamInfo
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