pub struct VideoInfo {
pub width: usize,
pub height: usize,
pub format: Option<Arc<Formaton>>,
}
Expand description
Video stream information.
Fields§
§width: usize
Picture width.
height: usize
Picture height.
format: Option<Arc<Formaton>>
Picture pixel format.
Trait Implementations§
impl Eq for VideoInfo
impl StructuralPartialEq for VideoInfo
Auto Trait Implementations§
impl Freeze for VideoInfo
impl RefUnwindSafe for VideoInfo
impl Send for VideoInfo
impl Sync for VideoInfo
impl Unpin for VideoInfo
impl UnwindSafe for VideoInfo
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