pub struct NetConnectionCommandConnectResult<'a> {
pub properties: NetConnectionCommandConnectResultProperties<'a>,
pub information: OnStatus<'a>,
}
Expand description
NetConnection command connect
result.
Defined by:
- Legacy RTMP spec, 7.2.1.1
Fields§
§properties: NetConnectionCommandConnectResultProperties<'a>
Properties of the connection.
information: OnStatus<'a>
Information about the connection.
Trait Implementations§
Source§impl<'a> Clone for NetConnectionCommandConnectResult<'a>
impl<'a> Clone for NetConnectionCommandConnectResult<'a>
Source§fn clone(&self) -> NetConnectionCommandConnectResult<'a>
fn clone(&self) -> NetConnectionCommandConnectResult<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for NetConnectionCommandConnectResult<'a>
impl<'a> Debug for NetConnectionCommandConnectResult<'a>
Source§impl Default for NetConnectionCommandConnectResult<'_>
impl Default for NetConnectionCommandConnectResult<'_>
Source§impl<'a> PartialEq for NetConnectionCommandConnectResult<'a>
impl<'a> PartialEq for NetConnectionCommandConnectResult<'a>
Source§fn eq(&self, other: &NetConnectionCommandConnectResult<'a>) -> bool
fn eq(&self, other: &NetConnectionCommandConnectResult<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'a> StructuralPartialEq for NetConnectionCommandConnectResult<'a>
Auto Trait Implementations§
impl<'a> !Freeze for NetConnectionCommandConnectResult<'a>
impl<'a> RefUnwindSafe for NetConnectionCommandConnectResult<'a>
impl<'a> Send for NetConnectionCommandConnectResult<'a>
impl<'a> Sync for NetConnectionCommandConnectResult<'a>
impl<'a> Unpin for NetConnectionCommandConnectResult<'a>
impl<'a> UnwindSafe for NetConnectionCommandConnectResult<'a>
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