pub trait GFrameDescTraitConst {
// Required method
fn as_raw_GFrameDesc(&self) -> *const c_void;
// Provided methods
fn fmt(&self) -> MediaFormat { ... }
fn size(&self) -> Size { ... }
fn equals(&self, unnamed: &impl GFrameDescTraitConst) -> Result<bool> { ... }
}
Expand description
Constant methods for crate::gapi::GFrameDesc
Required Methods§
fn as_raw_GFrameDesc(&self) -> *const c_void
Provided Methods§
fn fmt(&self) -> MediaFormat
fn size(&self) -> Size
fn equals(&self, unnamed: &impl GFrameDescTraitConst) -> Result<bool>
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.