#[repr(C)]pub struct ZL_ParameterizedNodeDesc {
pub name: *const c_char,
pub node: ZL_NodeID,
pub localParams: *const ZL_LocalParams,
}Fields§
§name: *const c_charOptionally a new name, if NULL it is derived from the node’s name
node: ZL_NodeIDNode to parameterize
localParams: *const ZL_LocalParamsOptionally the new local params, if NULL then the parameters are not updated.
Trait Implementations§
Source§impl Clone for ZL_ParameterizedNodeDesc
impl Clone for ZL_ParameterizedNodeDesc
Source§fn clone(&self) -> ZL_ParameterizedNodeDesc
fn clone(&self) -> ZL_ParameterizedNodeDesc
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ZL_ParameterizedNodeDesc
impl Debug for ZL_ParameterizedNodeDesc
impl Copy for ZL_ParameterizedNodeDesc
Auto Trait Implementations§
impl Freeze for ZL_ParameterizedNodeDesc
impl RefUnwindSafe for ZL_ParameterizedNodeDesc
impl !Send for ZL_ParameterizedNodeDesc
impl !Sync for ZL_ParameterizedNodeDesc
impl Unpin for ZL_ParameterizedNodeDesc
impl UnwindSafe for ZL_ParameterizedNodeDesc
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more