pub struct ParticipantEntry {
pub guid: [u8; 16],
pub name: String,
}Expand description
Participant-Entry im Header.
Fields§
§guid: [u8; 16]16-Byte RTPS-GUID-Prefix + EntityId (full GUID).
name: StringLogischer Name (z.B. ROS-2 Node-Name).
Trait Implementations§
Source§impl Clone for ParticipantEntry
impl Clone for ParticipantEntry
Source§fn clone(&self) -> ParticipantEntry
fn clone(&self) -> ParticipantEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ParticipantEntry
impl Debug for ParticipantEntry
Source§impl PartialEq for ParticipantEntry
impl PartialEq for ParticipantEntry
Source§fn eq(&self, other: &ParticipantEntry) -> bool
fn eq(&self, other: &ParticipantEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParticipantEntry
impl StructuralPartialEq for ParticipantEntry
Auto Trait Implementations§
impl Freeze for ParticipantEntry
impl RefUnwindSafe for ParticipantEntry
impl Send for ParticipantEntry
impl Sync for ParticipantEntry
impl Unpin for ParticipantEntry
impl UnsafeUnpin for ParticipantEntry
impl UnwindSafe for ParticipantEntry
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