#[repr(C)]pub struct rmw_gid_t {
pub implementation_identifier: *const c_char,
pub data: [u8; 24],
}Fields§
§implementation_identifier: *const c_charWhich backend produced this gid; gids from different backends are not comparable. Borrowed, static for the life of the image.
data: [u8; 24]The identifier bytes, zero-padded to the full width.
Trait Implementations§
Auto Trait Implementations§
impl !Send for rmw_gid_t
impl !Sync for rmw_gid_t
impl Freeze for rmw_gid_t
impl RefUnwindSafe for rmw_gid_t
impl Unpin for rmw_gid_t
impl UnsafeUnpin for rmw_gid_t
impl UnwindSafe for rmw_gid_t
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more