Struct rcl_sys::rcl_yaml_param_parser::rcl_node_params_t
source · [−]#[repr(C)]pub struct rcl_node_params_t {
pub parameter_names: *mut *mut c_char,
pub parameter_values: *mut rcl_variant_t,
pub num_params: usize,
}
Expand description
node_params_t stores all the parameters(key:value) of a single node
Fields
parameter_names: *mut *mut c_char
Array of parameter names (keys)
parameter_values: *mut rcl_variant_t
Array of coressponding parameter values
num_params: usize
Number of parameters in the node
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for rcl_node_params_t
impl !Send for rcl_node_params_t
impl !Sync for rcl_node_params_t
impl Unpin for rcl_node_params_t
impl UnwindSafe for rcl_node_params_t
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more