#[repr(C)]pub struct rcl_context_t {
pub global_arguments: rcl_arguments_t,
pub instance_id_storage: [u8; 8],
/* private fields */
}
Expand description
Encapsulates the non-global state of an init/shutdown cycle.
Fields
global_arguments: rcl_arguments_t
Global arguments for all nodes which share this context.
instance_id_storage: [u8; 8]
Private storage for instance ID atomic.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for rcl_context_t
impl !Send for rcl_context_t
impl !Sync for rcl_context_t
impl Unpin for rcl_context_t
impl UnwindSafe for rcl_context_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