pub struct NetConnectionCommandConnectResultProperties<'a> {
pub fms_ver: StringCow<'a>,
pub capabilities: f64,
}
Expand description
NetConnection command connect
result properties.
Name-value pairs that describe the properties(fmsver etc.) of the connection.
Defined by:
- Legacy RTMP spec, 7.2.1.1
Fields§
§fms_ver: StringCow<'a>
Flash Media Server version.
Usually set to “FMS/3,0,1,123”.
capabilities: f64
No idea what this means, but it is used by other media servers as well.
Usually set to 31.0.
Trait Implementations§
Source§impl<'a> Clone for NetConnectionCommandConnectResultProperties<'a>
impl<'a> Clone for NetConnectionCommandConnectResultProperties<'a>
Source§fn clone(&self) -> NetConnectionCommandConnectResultProperties<'a>
fn clone(&self) -> NetConnectionCommandConnectResultProperties<'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 NetConnectionCommandConnectResultProperties<'a>
impl<'a> Debug for NetConnectionCommandConnectResultProperties<'a>
Source§impl Default for NetConnectionCommandConnectResultProperties<'static>
impl Default for NetConnectionCommandConnectResultProperties<'static>
Source§impl<'a> PartialEq for NetConnectionCommandConnectResultProperties<'a>
impl<'a> PartialEq for NetConnectionCommandConnectResultProperties<'a>
Source§fn eq(&self, other: &NetConnectionCommandConnectResultProperties<'a>) -> bool
fn eq(&self, other: &NetConnectionCommandConnectResultProperties<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<'a> Serialize for NetConnectionCommandConnectResultProperties<'a>
impl<'a> Serialize for NetConnectionCommandConnectResultProperties<'a>
impl<'a> StructuralPartialEq for NetConnectionCommandConnectResultProperties<'a>
Auto Trait Implementations§
impl<'a> !Freeze for NetConnectionCommandConnectResultProperties<'a>
impl<'a> RefUnwindSafe for NetConnectionCommandConnectResultProperties<'a>
impl<'a> Send for NetConnectionCommandConnectResultProperties<'a>
impl<'a> Sync for NetConnectionCommandConnectResultProperties<'a>
impl<'a> Unpin for NetConnectionCommandConnectResultProperties<'a>
impl<'a> UnwindSafe for NetConnectionCommandConnectResultProperties<'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