pub struct GetCurrentConnectionIdsResponse {
pub connection_ids: Option<String>,
}Fields§
§connection_ids: Option<String>Trait Implementations§
Source§impl Clone for GetCurrentConnectionIdsResponse
impl Clone for GetCurrentConnectionIdsResponse
Source§fn clone(&self) -> GetCurrentConnectionIdsResponse
fn clone(&self) -> GetCurrentConnectionIdsResponse
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 GetCurrentConnectionIdsResponse
impl DecodeSoapResponse for GetCurrentConnectionIdsResponse
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 GetCurrentConnectionIdsResponse
impl<'xml> FromXml<'xml> for GetCurrentConnectionIdsResponse
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<GetCurrentConnectionIdsResponse>
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 GetCurrentConnectionIdsResponse
impl PartialEq for GetCurrentConnectionIdsResponse
Source§fn eq(&self, other: &GetCurrentConnectionIdsResponse) -> bool
fn eq(&self, other: &GetCurrentConnectionIdsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetCurrentConnectionIdsResponse
Auto Trait Implementations§
impl Freeze for GetCurrentConnectionIdsResponse
impl RefUnwindSafe for GetCurrentConnectionIdsResponse
impl Send for GetCurrentConnectionIdsResponse
impl Sync for GetCurrentConnectionIdsResponse
impl Unpin for GetCurrentConnectionIdsResponse
impl UnwindSafe for GetCurrentConnectionIdsResponse
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