pub struct PublisherEntry {
pub name: String,
pub qos: Option<EntityQos>,
pub data_writers: Vec<DataWriterEntry>,
}Expand description
<publisher> (§7.3.5.4.4).
Fields§
§name: StringPublisher-Name.
qos: Option<EntityQos>Inline-<publisher_qos>.
data_writers: Vec<DataWriterEntry>DataWriter-Liste.
Trait Implementations§
Source§impl Clone for PublisherEntry
impl Clone for PublisherEntry
Source§fn clone(&self) -> PublisherEntry
fn clone(&self) -> PublisherEntry
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 PublisherEntry
impl Debug for PublisherEntry
Source§impl Default for PublisherEntry
impl Default for PublisherEntry
Source§fn default() -> PublisherEntry
fn default() -> PublisherEntry
Returns the “default value” for a type. Read more
Source§impl PartialEq for PublisherEntry
impl PartialEq for PublisherEntry
Source§fn eq(&self, other: &PublisherEntry) -> bool
fn eq(&self, other: &PublisherEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PublisherEntry
impl StructuralPartialEq for PublisherEntry
Auto Trait Implementations§
impl Freeze for PublisherEntry
impl RefUnwindSafe for PublisherEntry
impl Send for PublisherEntry
impl Sync for PublisherEntry
impl Unpin for PublisherEntry
impl UnsafeUnpin for PublisherEntry
impl UnwindSafe for PublisherEntry
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