Struct vapoursynth::video_info::VideoInfo
source · [−]pub struct VideoInfo<'core> {
pub format: Property<Format<'core>>,
pub framerate: Property<Framerate>,
pub resolution: Property<Resolution>,
pub num_frames: usize,
pub flags: Flags,
}Expand description
Contains information about a video clip.
Fields
format: Property<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.
flags: FlagsThe flags of this clip.
Trait Implementations
impl<'core> Copy for VideoInfo<'core>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more