pub struct AddMemberResponse {
pub current_transport_settings: Option<String>,
pub current_uri: Option<String>,
pub group_uuid_joined: Option<String>,
pub reset_volume_after: Option<bool>,
pub volume_av_transport_uri: Option<String>,
}Fields§
§current_transport_settings: Option<String>§current_uri: Option<String>§group_uuid_joined: Option<String>§reset_volume_after: Option<bool>§volume_av_transport_uri: Option<String>Trait Implementations§
Source§impl Clone for AddMemberResponse
impl Clone for AddMemberResponse
Source§fn clone(&self) -> AddMemberResponse
fn clone(&self) -> AddMemberResponse
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 AddMemberResponse
impl Debug for AddMemberResponse
Source§impl DecodeSoapResponse for AddMemberResponse
impl DecodeSoapResponse for AddMemberResponse
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 AddMemberResponse
impl<'xml> FromXml<'xml> for AddMemberResponse
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<AddMemberResponse>
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 AddMemberResponse
impl PartialEq for AddMemberResponse
impl StructuralPartialEq for AddMemberResponse
Auto Trait Implementations§
impl Freeze for AddMemberResponse
impl RefUnwindSafe for AddMemberResponse
impl Send for AddMemberResponse
impl Sync for AddMemberResponse
impl Unpin for AddMemberResponse
impl UnwindSafe for AddMemberResponse
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