Struct rps_sys::RpsParameterDesc
source · #[repr(C)]pub struct RpsParameterDesc {
pub typeInfo: RpsTypeInfo,
pub arraySize: u32,
pub attr: RpsConstant,
pub name: *const c_char,
pub flags: RpsParameterFlags,
}Expand description
Parameters for describing a node call parameter.
Fields§
§typeInfo: RpsTypeInfoType info of the parameter.
arraySize: u32Number of array elements for this parameter. 0 indicates not an array (single
attr: RpsConstantPointer to a runtime defined structure with attributes of the parameter.
name: *const c_charNull terminated string with the name of the parameter.
flags: RpsParameterFlagsParameter type flags.
Trait Implementations§
source§impl Clone for RpsParameterDesc
impl Clone for RpsParameterDesc
source§fn clone(&self) -> RpsParameterDesc
fn clone(&self) -> RpsParameterDesc
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