#[repr(C)]pub struct CNodeMetadata {
pub kind: *const c_char,
pub description: *const c_char,
pub inputs: *const CInputPin,
pub inputs_count: usize,
pub outputs: *const COutputPin,
pub outputs_count: usize,
pub param_schema: *const c_char,
pub categories: *const *const c_char,
pub categories_count: usize,
}Expand description
Node metadata returned by plugin
Fields§
§kind: *const c_char§description: *const c_charOptional description of the node (null-terminated string, can be null)
inputs: *const CInputPin§inputs_count: usize§outputs: *const COutputPin§outputs_count: usize§param_schema: *const c_charJSON schema for parameters (null-terminated string)
categories: *const *const c_charArray of category strings
categories_count: usizeAuto Trait Implementations§
impl Freeze for CNodeMetadata
impl RefUnwindSafe for CNodeMetadata
impl !Send for CNodeMetadata
impl !Sync for CNodeMetadata
impl Unpin for CNodeMetadata
impl UnwindSafe for CNodeMetadata
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