pub struct ResolvedTopic {
pub name: String,
pub type_name: String,
pub qos: Option<EntityQos>,
pub topic_filter: Option<String>,
}Expand description
Aufgeloester Topic-Snapshot.
Fields§
§name: StringTopic-Name.
type_name: StringType-Name (aus register_type_ref der Domain).
qos: Option<EntityQos>Effektives Topic-QoS (Inline aus Topic, oder via qos_profile_ref,
oder None wenn nichts gesetzt).
topic_filter: Option<String>Topic-Filter-Glob.
Trait Implementations§
Source§impl Clone for ResolvedTopic
impl Clone for ResolvedTopic
Source§fn clone(&self) -> ResolvedTopic
fn clone(&self) -> ResolvedTopic
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 ResolvedTopic
impl Debug for ResolvedTopic
Source§impl Default for ResolvedTopic
impl Default for ResolvedTopic
Source§fn default() -> ResolvedTopic
fn default() -> ResolvedTopic
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolvedTopic
impl PartialEq for ResolvedTopic
Source§fn eq(&self, other: &ResolvedTopic) -> bool
fn eq(&self, other: &ResolvedTopic) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ResolvedTopic
impl StructuralPartialEq for ResolvedTopic
Auto Trait Implementations§
impl Freeze for ResolvedTopic
impl RefUnwindSafe for ResolvedTopic
impl Send for ResolvedTopic
impl Sync for ResolvedTopic
impl Unpin for ResolvedTopic
impl UnsafeUnpin for ResolvedTopic
impl UnwindSafe for ResolvedTopic
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