pub struct VideoTrack {
pub height: u32,
pub width: u32,
pub sar_num: u32,
pub sar_den: u32,
pub frame_rate_num: u32,
pub frame_rate_den: u32,
}Fields§
§height: u32§width: u32§sar_num: u32§sar_den: u32§frame_rate_num: u32§frame_rate_den: u32Trait Implementations§
Source§impl Clone for VideoTrack
impl Clone for VideoTrack
Source§fn clone(&self) -> VideoTrack
fn clone(&self) -> VideoTrack
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for VideoTrack
Source§impl Debug for VideoTrack
impl Debug for VideoTrack
impl Eq for VideoTrack
Source§impl Hash for VideoTrack
impl Hash for VideoTrack
Source§impl PartialEq for VideoTrack
impl PartialEq for VideoTrack
Source§fn eq(&self, other: &VideoTrack) -> bool
fn eq(&self, other: &VideoTrack) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VideoTrack
Auto Trait Implementations§
impl Freeze for VideoTrack
impl RefUnwindSafe for VideoTrack
impl Send for VideoTrack
impl Sync for VideoTrack
impl Unpin for VideoTrack
impl UnsafeUnpin for VideoTrack
impl UnwindSafe for VideoTrack
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