pub struct RtmpUrl {
pub host: String,
pub port: u16,
pub app: String,
pub stream_name: String,
pub tc_url: String,
}Expand description
Parsed RTMP URL: rtmp://host[:port]/app/stream_name.
Fields§
§host: String§port: u16§app: String§stream_name: String§tc_url: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RtmpUrl
impl RefUnwindSafe for RtmpUrl
impl Send for RtmpUrl
impl Sync for RtmpUrl
impl Unpin for RtmpUrl
impl UnsafeUnpin for RtmpUrl
impl UnwindSafe for RtmpUrl
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