#[repr(C)]pub struct ZL_ParameterizedGraphDesc {
pub name: *const c_char,
pub graph: ZL_GraphID,
pub customGraphs: *const ZL_GraphID,
pub nbCustomGraphs: usize,
pub customNodes: *const ZL_NodeID,
pub nbCustomNodes: usize,
pub localParams: *const ZL_LocalParams,
}Expand description
This creates a new Graphs, based on an existing Graph, but modifying all or parts of its exposed parameters.
Fields§
§name: *const c_charOptionally a new name, otherwise it is derived from graph’s name.
graph: ZL_GraphID§customGraphs: *const ZL_GraphIDEmpty means don’t override
nbCustomGraphs: usize§customNodes: *const ZL_NodeIDEmpty means don’t override
nbCustomNodes: usize§localParams: *const ZL_LocalParamsNULL means don’t override
Trait Implementations§
Source§impl Clone for ZL_ParameterizedGraphDesc
impl Clone for ZL_ParameterizedGraphDesc
Source§fn clone(&self) -> ZL_ParameterizedGraphDesc
fn clone(&self) -> ZL_ParameterizedGraphDesc
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_ParameterizedGraphDesc
impl Debug for ZL_ParameterizedGraphDesc
impl Copy for ZL_ParameterizedGraphDesc
Auto Trait Implementations§
impl Freeze for ZL_ParameterizedGraphDesc
impl RefUnwindSafe for ZL_ParameterizedGraphDesc
impl !Send for ZL_ParameterizedGraphDesc
impl !Sync for ZL_ParameterizedGraphDesc
impl Unpin for ZL_ParameterizedGraphDesc
impl UnwindSafe for ZL_ParameterizedGraphDesc
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