pub enum Method {
Show 13 variants
Describe,
GetParameter,
Options,
Pause,
Play,
PlayNotify,
Redirect,
Setup,
SetParameter,
Announce,
Record,
Teardown,
Extension(String),
}
Expand description
RTSP method.
See RFC 7826 section 13 for the details about each method.
Variants§
Describe
Describe
GetParameter
Get parameter
Options
Options
Pause
Pause
Play
Play
PlayNotify
Play notify (only RTSP 2.0)
Redirect
Redirect
Setup
Setup
SetParameter
Set parameter
Announce
Announce (only RTSP 1.0)
Record
Record (only RTSP 1.0)
Teardown
Teardown
Extension(String)
Extension method
Trait Implementations§
impl Eq for Method
impl StructuralPartialEq for Method
Auto Trait Implementations§
impl Freeze for Method
impl RefUnwindSafe for Method
impl Send for Method
impl Sync for Method
impl Unpin for Method
impl UnwindSafe for Method
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