pub struct BridgeRoute {
pub repository_id: String,
pub object_key: Vec<u8>,
pub direction: Direction,
pub operations: Vec<OperationMapping>,
}Expand description
Eine Bridge-Route — bindet ein CORBA-Object an Operations-Topics.
Fields§
§repository_id: StringCORBA-Repository-ID des Object-Types (z.B.
IDL:demo/Echo:1.0).
object_key: Vec<u8>CORBA-Object-Key (POA-Erstellt).
direction: DirectionRichtung der Bruecke.
operations: Vec<OperationMapping>Operation-Mapping pro IDL-Methode.
Implementations§
Source§impl BridgeRoute
impl BridgeRoute
Sourcepub fn operation(&self, name: &str) -> Option<&OperationMapping>
pub fn operation(&self, name: &str) -> Option<&OperationMapping>
Liefert das OperationMapping fuer einen Operation-Name.
Trait Implementations§
Source§impl Clone for BridgeRoute
impl Clone for BridgeRoute
Source§fn clone(&self) -> BridgeRoute
fn clone(&self) -> BridgeRoute
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 BridgeRoute
impl Debug for BridgeRoute
Source§impl PartialEq for BridgeRoute
impl PartialEq for BridgeRoute
Source§fn eq(&self, other: &BridgeRoute) -> bool
fn eq(&self, other: &BridgeRoute) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BridgeRoute
impl StructuralPartialEq for BridgeRoute
Auto Trait Implementations§
impl Freeze for BridgeRoute
impl RefUnwindSafe for BridgeRoute
impl Send for BridgeRoute
impl Sync for BridgeRoute
impl Unpin for BridgeRoute
impl UnsafeUnpin for BridgeRoute
impl UnwindSafe for BridgeRoute
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