#[repr(C)]
pub struct rcl_node_options_t { pub allocator: rcl_allocator_t, pub use_global_arguments: bool, pub arguments: rcl_arguments_t, pub enable_rosout: bool, pub rosout_qos: rmw_qos_profile_t, }
Expand description

Structure which encapsulates the options for creating a rcl_node_t.

Fields

allocator: rcl_allocator_t

Custom allocator used for internal allocations.

use_global_arguments: bool

If false then only use arguments in this struct, otherwise use global arguments also.

arguments: rcl_arguments_t

Command line arguments that apply only to this node.

enable_rosout: bool

Flag to enable rosout for this node

rosout_qos: rmw_qos_profile_t

Middleware quality of service settings for /rosout.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.