pub struct VideoInfo<'core> {
pub format: Format<'core>,
pub framerate: Property<Framerate>,
pub resolution: Property<Resolution>,
pub num_frames: usize,
}Expand description
Contains information about a video clip.
Fields§
§format: Format<'core>Format of the clip.
framerate: Property<Framerate>Framerate of the clip.
resolution: Property<Resolution>Resolution of the clip.
num_frames: usizeLength of the clip, greater than 0.
Trait Implementations§
impl<'core> Copy for VideoInfo<'core>
Auto Trait Implementations§
impl<'core> Freeze for VideoInfo<'core>
impl<'core> RefUnwindSafe for VideoInfo<'core>
impl<'core> Send for VideoInfo<'core>
impl<'core> Sync for VideoInfo<'core>
impl<'core> Unpin for VideoInfo<'core>
impl<'core> UnwindSafe for VideoInfo<'core>
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