Struct skyway_webrtc_gateway_api::media::AnswerQuery
source · 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
sourceimpl Clone for AnswerQuery
impl Clone for AnswerQuery
sourcefn clone(&self) -> AnswerQuery
fn clone(&self) -> AnswerQuery
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AnswerQuery
impl Debug for AnswerQuery
sourceimpl<'de> Deserialize<'de> for AnswerQuery
impl<'de> Deserialize<'de> for AnswerQuery
sourcefn 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
sourceimpl PartialEq<AnswerQuery> for AnswerQuery
impl PartialEq<AnswerQuery> for AnswerQuery
sourcefn eq(&self, other: &AnswerQuery) -> bool
fn eq(&self, other: &AnswerQuery) -> bool
sourceimpl Serialize for AnswerQuery
impl Serialize for AnswerQuery
impl StructuralPartialEq for AnswerQuery
Auto Trait Implementations
impl RefUnwindSafe for AnswerQuery
impl Send for AnswerQuery
impl Sync for AnswerQuery
impl Unpin for AnswerQuery
impl UnwindSafe for AnswerQuery
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more