pub struct TopicMapping {
pub port_name: String,
pub topic_name: String,
pub type_name: String,
pub direction: MappingDirection,
}Expand description
Eine konkrete Bridge-Mapping-Definition.
Fields§
§port_name: StringCCM-Port-Name (Source oder Sink).
topic_name: StringDDS-Topic-Name.
type_name: StringType-Name (vollqualifiziert).
direction: MappingDirectionMapping-Direction.
Trait Implementations§
Source§impl Clone for TopicMapping
impl Clone for TopicMapping
Source§fn clone(&self) -> TopicMapping
fn clone(&self) -> TopicMapping
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 TopicMapping
impl Debug for TopicMapping
Source§impl PartialEq for TopicMapping
impl PartialEq for TopicMapping
Source§fn eq(&self, other: &TopicMapping) -> bool
fn eq(&self, other: &TopicMapping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TopicMapping
impl StructuralPartialEq for TopicMapping
Auto Trait Implementations§
impl Freeze for TopicMapping
impl RefUnwindSafe for TopicMapping
impl Send for TopicMapping
impl Sync for TopicMapping
impl Unpin for TopicMapping
impl UnsafeUnpin for TopicMapping
impl UnwindSafe for TopicMapping
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