#[repr(C)]pub struct ZL_GraphContext {
pub nodeID: ZL_NodeID,
pub graphID: ZL_GraphID,
pub transformID: ZL_IDType,
pub name: *const c_char,
}Fields§
§nodeID: ZL_NodeIDThe current nodeID or 0 for unset / unknown.
graphID: ZL_GraphIDThe current graphID or 0 for unset / unknown.
transformID: ZL_IDTypeThe current transformID or 0 for unset / unknown.
name: *const c_charThe name of the component, may be NULL.
Trait Implementations§
Source§impl Clone for ZL_GraphContext
impl Clone for ZL_GraphContext
Source§fn clone(&self) -> ZL_GraphContext
fn clone(&self) -> ZL_GraphContext
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_GraphContext
impl Debug for ZL_GraphContext
impl Copy for ZL_GraphContext
Auto Trait Implementations§
impl Freeze for ZL_GraphContext
impl RefUnwindSafe for ZL_GraphContext
impl !Send for ZL_GraphContext
impl !Sync for ZL_GraphContext
impl Unpin for ZL_GraphContext
impl UnwindSafe for ZL_GraphContext
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