Struct rps_sys::RpsNodeDesc
source · #[repr(C)]pub struct RpsNodeDesc {
pub flags: RpsNodeDeclFlags,
pub numParams: u32,
pub pParamDescs: *const RpsParameterDesc,
pub name: *const c_char,
}Expand description
Parameters for describing a render graph node.
Fields§
§flags: RpsNodeDeclFlagsFlags for the type of render graph node.
numParams: u32Number of parameters used in the callback.
pParamDescs: *const RpsParameterDescPointer to an array of [const RpsParameterDesc] with
name: *const c_charNull terminated string with the name of the callback.
Trait Implementations§
source§impl Clone for RpsNodeDesc
impl Clone for RpsNodeDesc
source§fn clone(&self) -> RpsNodeDesc
fn clone(&self) -> RpsNodeDesc
Returns a copy 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 more