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§
Provided Methods§
fn properties(&self) -> Option<MapRef<'_>>
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.