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