pub struct CallResponse {
pub command_type: String,
pub params: MediaConnectionIdWrapper,
}
Expand description
Response from POST /media/connections
Fields§
§command_type: String
Fixed value as "PEERS_CALL"
.
params: MediaConnectionIdWrapper
Identifier for MediaConnection
Trait Implementations§
Source§impl Clone for CallResponse
impl Clone for CallResponse
Source§fn clone(&self) -> CallResponse
fn clone(&self) -> CallResponse
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 CallResponse
impl Debug for CallResponse
Source§impl<'de> Deserialize<'de> for CallResponse
impl<'de> Deserialize<'de> for CallResponse
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 CallResponse
impl PartialEq for CallResponse
Source§impl Serialize for CallResponse
impl Serialize for CallResponse
impl StructuralPartialEq for CallResponse
Auto Trait Implementations§
impl Freeze for CallResponse
impl RefUnwindSafe for CallResponse
impl Send for CallResponse
impl Sync for CallResponse
impl Unpin for CallResponse
impl UnwindSafe for CallResponse
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