pub struct ObjectReference {
pub type_id: String,
pub iiop_profile: Vec<u8>,
}Expand description
CORBA-Object-Reference (IOR-encoded). Generierte Stubs halten eine Instanz dieser Struct als Connection-Handle.
Fields§
§type_id: StringType-Identifier (Repository-ID, z.B.
IDL:omg.org/MyInterface:1.0).
iiop_profile: Vec<u8>IIOP-Profile-Bytes (CDR-encoded). Phase-1 ist das opaque; Phase-2 nutzt corba-iiop fuer die echte Connection.
Trait Implementations§
Source§impl Clone for ObjectReference
impl Clone for ObjectReference
Source§fn clone(&self) -> ObjectReference
fn clone(&self) -> ObjectReference
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 ObjectReference
impl Debug for ObjectReference
Source§impl Default for ObjectReference
impl Default for ObjectReference
Source§fn default() -> ObjectReference
fn default() -> ObjectReference
Returns the “default value” for a type. Read more
Source§impl PartialEq for ObjectReference
impl PartialEq for ObjectReference
Source§fn eq(&self, other: &ObjectReference) -> bool
fn eq(&self, other: &ObjectReference) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ObjectReference
impl StructuralPartialEq for ObjectReference
Auto Trait Implementations§
impl Freeze for ObjectReference
impl RefUnwindSafe for ObjectReference
impl Send for ObjectReference
impl Sync for ObjectReference
impl Unpin for ObjectReference
impl UnsafeUnpin for ObjectReference
impl UnwindSafe for ObjectReference
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