Trait Frame

Source
pub trait Frame: Sized + FrameFromPtr {
    // Required methods
    fn api(&self) -> Api;
    fn as_ptr(&self) -> *mut VSFrame;

    // Provided methods
    fn properties(&self) -> Option<MapRef<'_>> { ... }
    fn properties_mut(&mut self) -> Option<MapRef<'_>> { ... }
}

Required Methods§

Source

fn api(&self) -> Api

Source

fn as_ptr(&self) -> *mut VSFrame

Provided Methods§

Source

fn properties(&self) -> Option<MapRef<'_>>

Source

fn properties_mut(&mut self) -> Option<MapRef<'_>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§