pub trait TransitionClipExt: IsA<TransitionClip> + 'static {
// Provided methods
fn vtype(&self) -> VideoStandardTransitionType { ... }
fn set_vtype(&self, vtype: VideoStandardTransitionType) { ... }
fn connect_vtype_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
Sourcefn vtype(&self) -> VideoStandardTransitionType
fn vtype(&self) -> VideoStandardTransitionType
a VideoStandardTransitionType
representing the wipe to use
Sourcefn set_vtype(&self, vtype: VideoStandardTransitionType)
fn set_vtype(&self, vtype: VideoStandardTransitionType)
a VideoStandardTransitionType
representing the wipe to use
fn connect_vtype_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
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.