pub struct TopicConfig {
pub object_id: ObjectId,
pub name: String,
pub type_name: String,
pub qos_profile: Option<String>,
}Expand description
Ein <topic> (Spec §7.7.3.7).
Fields§
§object_id: ObjectIdObjectId, kind=OBJK_TOPIC.
name: Stringname-Attribut.
type_name: Stringtype_name-Attribut. Muss in der globalen <type>-Section
deklariert sein.
qos_profile: Option<String>Optional qos_profile="Lib::Profile".
Trait Implementations§
Source§impl Clone for TopicConfig
impl Clone for TopicConfig
Source§fn clone(&self) -> TopicConfig
fn clone(&self) -> TopicConfig
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 TopicConfig
impl Debug for TopicConfig
Source§impl PartialEq for TopicConfig
impl PartialEq for TopicConfig
Source§fn eq(&self, other: &TopicConfig) -> bool
fn eq(&self, other: &TopicConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TopicConfig
impl StructuralPartialEq for TopicConfig
Auto Trait Implementations§
impl Freeze for TopicConfig
impl RefUnwindSafe for TopicConfig
impl Send for TopicConfig
impl Sync for TopicConfig
impl Unpin for TopicConfig
impl UnsafeUnpin for TopicConfig
impl UnwindSafe for TopicConfig
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