pub struct GetCurrentConnectionInfoResponse {
pub rcs_id: Option<i32>,
pub av_transport_id: Option<i32>,
pub protocol_info: Option<String>,
pub peer_connection_manager: Option<String>,
pub peer_connection_id: Option<i32>,
pub direction: Option<Direction>,
pub status: Option<ConnectionStatus>,
}Fields§
§rcs_id: Option<i32>§av_transport_id: Option<i32>§protocol_info: Option<String>§peer_connection_manager: Option<String>§peer_connection_id: Option<i32>§direction: Option<Direction>§status: Option<ConnectionStatus>Trait Implementations§
Source§impl Clone for GetCurrentConnectionInfoResponse
impl Clone for GetCurrentConnectionInfoResponse
Source§fn clone(&self) -> GetCurrentConnectionInfoResponse
fn clone(&self) -> GetCurrentConnectionInfoResponse
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 DecodeSoapResponse for GetCurrentConnectionInfoResponse
impl DecodeSoapResponse for GetCurrentConnectionInfoResponse
Source§fn decode_soap_xml(xml: &str) -> Result<Self>
fn decode_soap_xml(xml: &str) -> Result<Self>
xml is a complete Soap
<Envelope> element.
This method decodes and returns Self from that Envelope.Source§impl<'xml> FromXml<'xml> for GetCurrentConnectionInfoResponse
impl<'xml> FromXml<'xml> for GetCurrentConnectionInfoResponse
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<GetCurrentConnectionInfoResponse>
fn matches(id: Id<'_>, field: Option<Id<'_>>) -> bool
fn deserialize<'cx>( into: &mut Self::Accumulator, field: &'static str, deserializer: &mut Deserializer<'cx, 'xml>, ) -> Result<(), Error>
Source§impl PartialEq for GetCurrentConnectionInfoResponse
impl PartialEq for GetCurrentConnectionInfoResponse
Source§fn eq(&self, other: &GetCurrentConnectionInfoResponse) -> bool
fn eq(&self, other: &GetCurrentConnectionInfoResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetCurrentConnectionInfoResponse
Auto Trait Implementations§
impl Freeze for GetCurrentConnectionInfoResponse
impl RefUnwindSafe for GetCurrentConnectionInfoResponse
impl Send for GetCurrentConnectionInfoResponse
impl Sync for GetCurrentConnectionInfoResponse
impl Unpin for GetCurrentConnectionInfoResponse
impl UnwindSafe for GetCurrentConnectionInfoResponse
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