pub struct ConnectionDescription {
pub cookie: Cookie,
pub objref: RepositoryId,
}Expand description
Components::ConnectionDescription-valuetype — Spec §6.5.3 (S. 22).
valuetype ConnectionDescription { public Cookie ck; public Object objref; };.
Fields§
Cookie der Connection (bei Multiplex; bei Simplex default).
objref: RepositoryIdVerbundener Object-Reference (Repository-ID-Identifier).
Trait Implementations§
Source§impl Clone for ConnectionDescription
impl Clone for ConnectionDescription
Source§fn clone(&self) -> ConnectionDescription
fn clone(&self) -> ConnectionDescription
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 ConnectionDescription
impl Debug for ConnectionDescription
Source§impl PartialEq for ConnectionDescription
impl PartialEq for ConnectionDescription
Source§fn eq(&self, other: &ConnectionDescription) -> bool
fn eq(&self, other: &ConnectionDescription) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConnectionDescription
impl StructuralPartialEq for ConnectionDescription
Auto Trait Implementations§
impl Freeze for ConnectionDescription
impl RefUnwindSafe for ConnectionDescription
impl Send for ConnectionDescription
impl Sync for ConnectionDescription
impl Unpin for ConnectionDescription
impl UnsafeUnpin for ConnectionDescription
impl UnwindSafe for ConnectionDescription
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