Struct ofx::ParamSetHandle
source · pub struct ParamSetHandle { /* private fields */ }Implementations
sourceimpl ParamSetHandle
impl ParamSetHandle
pub fn new(
inner: OfxParamSetHandle,
parameter: Rc<OfxParameterSuiteV1>,
property: Rc<OfxPropertySuiteV1>
) -> Self
pub fn parameter<T>(&self, name: &str) -> Result<ParamHandle<T>>where
T: ParamHandleValue,
pub fn param_define_double(
&mut self,
name: &str
) -> Result<ParamDoubleProperties>
pub fn param_define_int(&mut self, name: &str) -> Result<ParamIntProperties>
pub fn param_define_boolean(
&mut self,
name: &str
) -> Result<ParamBooleanProperties>
pub fn param_define_group(&mut self, name: &str) -> Result<ParamGroupProperties>
pub fn param_define_page(&mut self, name: &str) -> Result<ParamPageProperties>
Trait Implementations
sourceimpl Clone for ParamSetHandle
impl Clone for ParamSetHandle
sourcefn clone(&self) -> ParamSetHandle
fn clone(&self) -> ParamSetHandle
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 moreAuto Trait Implementations
impl RefUnwindSafe for ParamSetHandle
impl !Send for ParamSetHandle
impl !Sync for ParamSetHandle
impl Unpin for ParamSetHandle
impl UnwindSafe for ParamSetHandle
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