pub struct Open {
pub container_id: ByteString,
pub hostname: Option<ByteString>,
pub max_frame_size: u32,
pub channel_max: u16,
pub idle_time_out: Option<Milliseconds>,
pub outgoing_locales: Option<IetfLanguageTags>,
pub incoming_locales: Option<IetfLanguageTags>,
pub offered_capabilities: Option<Symbols>,
pub desired_capabilities: Option<Symbols>,
pub properties: Option<Fields>,
}Fields§
§container_id: ByteString§hostname: Option<ByteString>§max_frame_size: u32§channel_max: u16§idle_time_out: Option<Milliseconds>§outgoing_locales: Option<IetfLanguageTags>§incoming_locales: Option<IetfLanguageTags>§offered_capabilities: Option<Symbols>§desired_capabilities: Option<Symbols>§properties: Option<Fields>Implementations§
Source§impl Open
impl Open
pub fn container_id(&self) -> &ByteString
pub fn hostname(&self) -> Option<&ByteString>
pub fn max_frame_size(&self) -> u32
pub fn channel_max(&self) -> u16
pub fn idle_time_out(&self) -> Option<Milliseconds>
pub fn outgoing_locales(&self) -> Option<&IetfLanguageTags>
pub fn incoming_locales(&self) -> Option<&IetfLanguageTags>
pub fn offered_capabilities(&self) -> Option<&Symbols>
pub fn desired_capabilities(&self) -> Option<&Symbols>
pub fn properties(&self) -> Option<&Fields>
Trait Implementations§
impl StructuralPartialEq for Open
Auto Trait Implementations§
impl !Freeze for Open
impl RefUnwindSafe for Open
impl Send for Open
impl Sync for Open
impl Unpin for Open
impl UnwindSafe for Open
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