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 (const: unstable) · 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>
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 UnsafeUnpin 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