pub struct AnswerQuery {
pub constraints: Constraints,
pub redirect_params: Option<RedirectParameters>,
}
Expand description
Query parameter for POST /media/connections
Fields§
§constraints: Constraints
Parameters for MediaConnection It contains source socket. If the field is None, this MediaConnection works as RecvOnly.
redirect_params: Option<RedirectParameters>
Shows destiation socket to which received data is redirected If this field is not set, DataConnection works as SendOnly.
Trait Implementations§
Source§impl Clone for AnswerQuery
impl Clone for AnswerQuery
Source§fn clone(&self) -> AnswerQuery
fn clone(&self) -> AnswerQuery
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 AnswerQuery
impl Debug for AnswerQuery
Source§impl<'de> Deserialize<'de> for AnswerQuery
impl<'de> Deserialize<'de> for AnswerQuery
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 AnswerQuery
impl PartialEq for AnswerQuery
Source§impl Serialize for AnswerQuery
impl Serialize for AnswerQuery
impl StructuralPartialEq for AnswerQuery
Auto Trait Implementations§
impl Freeze for AnswerQuery
impl RefUnwindSafe for AnswerQuery
impl Send for AnswerQuery
impl Sync for AnswerQuery
impl Unpin for AnswerQuery
impl UnwindSafe for AnswerQuery
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