pub struct RedirectParameters {
pub video: Option<SocketInfo<PhantomId>>,
pub video_rtcp: Option<SocketInfo<PhantomId>>,
pub audio: Option<SocketInfo<PhantomId>>,
pub audio_rtcp: Option<SocketInfo<PhantomId>>,
}
Expand description
Shows to which socket media should be redirected.
Fields§
§video: Option<SocketInfo<PhantomId>>
video is redirected to this socket
video_rtcp: Option<SocketInfo<PhantomId>>
video rtcp is redirected to this socket
audio: Option<SocketInfo<PhantomId>>
audio is redirected to this socket
audio_rtcp: Option<SocketInfo<PhantomId>>
audio rtcp is redirected to this socket
Trait Implementations§
Source§impl Clone for RedirectParameters
impl Clone for RedirectParameters
Source§fn clone(&self) -> RedirectParameters
fn clone(&self) -> RedirectParameters
Returns a duplicate 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 Debug for RedirectParameters
impl Debug for RedirectParameters
Source§impl<'de> Deserialize<'de> for RedirectParameters
impl<'de> Deserialize<'de> for RedirectParameters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RedirectParameters
impl PartialEq for RedirectParameters
Source§impl Serialize for RedirectParameters
impl Serialize for RedirectParameters
impl StructuralPartialEq for RedirectParameters
Auto Trait Implementations§
impl Freeze for RedirectParameters
impl RefUnwindSafe for RedirectParameters
impl Send for RedirectParameters
impl Sync for RedirectParameters
impl Unpin for RedirectParameters
impl UnwindSafe for RedirectParameters
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