Struct ofx::ImageEffectHandle
source · pub struct ImageEffectHandle { /* private fields */ }Implementations
sourceimpl ImageEffectHandle
impl ImageEffectHandle
pub fn new(
inner: OfxImageEffectHandle,
property: Rc<OfxPropertySuiteV1>,
image_effect: Rc<OfxImageEffectSuiteV1>,
parameter: Rc<OfxParameterSuiteV1>
) -> Self
sourceimpl ImageEffectHandle
impl ImageEffectHandle
pub fn abort(&self) -> Result<Bool>
pub fn parameter_set(&self) -> Result<ParamSetHandle>
pub fn get_output_clip(&self) -> Result<ImageClipHandle>
pub fn get_simple_input_clip(&self) -> Result<ImageClipHandle>
pub fn get_clip(&self, name: &str) -> Result<ImageClipHandle>
pub fn new_output_clip(&self) -> Result<ClipProperties>
pub fn new_simple_input_clip(&self) -> Result<ClipProperties>
pub fn new_clip(&self, name: &str) -> Result<ClipProperties>
pub fn set_instance_data<T>(&mut self, data: T) -> Result<()>where
T: Sized,
pub fn get_instance_data<T>(&self) -> Result<&mut T>where
T: Sized,
pub fn drop_instance_data(&mut self) -> Result<()>
Trait Implementations
sourceimpl Clone for ImageEffectHandle
impl Clone for ImageEffectHandle
sourcefn clone(&self) -> ImageEffectHandle
fn clone(&self) -> ImageEffectHandle
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ImageEffectHandle
impl Debug for ImageEffectHandle
sourceimpl HasProperties<ImageEffectProperties> for ImageEffectHandle
impl HasProperties<ImageEffectProperties> for ImageEffectHandle
fn properties(&self) -> Result<ImageEffectProperties>
Auto Trait Implementations
impl RefUnwindSafe for ImageEffectHandle
impl !Send for ImageEffectHandle
impl !Sync for ImageEffectHandle
impl Unpin for ImageEffectHandle
impl UnwindSafe for ImageEffectHandle
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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