pub struct GetZoneAttributesResponse {
pub current_zone_name: Option<String>,
pub current_icon: Option<String>,
pub current_configuration: Option<String>,
pub current_target_room_name: Option<String>,
}Fields§
§current_zone_name: Option<String>§current_icon: Option<String>§current_configuration: Option<String>§current_target_room_name: Option<String>Trait Implementations§
Source§impl Clone for GetZoneAttributesResponse
impl Clone for GetZoneAttributesResponse
Source§fn clone(&self) -> GetZoneAttributesResponse
fn clone(&self) -> GetZoneAttributesResponse
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 GetZoneAttributesResponse
impl Debug for GetZoneAttributesResponse
Source§impl DecodeSoapResponse for GetZoneAttributesResponse
impl DecodeSoapResponse for GetZoneAttributesResponse
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 GetZoneAttributesResponse
impl<'xml> FromXml<'xml> for GetZoneAttributesResponse
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<GetZoneAttributesResponse>
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 GetZoneAttributesResponse
Auto Trait Implementations§
impl Freeze for GetZoneAttributesResponse
impl RefUnwindSafe for GetZoneAttributesResponse
impl Send for GetZoneAttributesResponse
impl Sync for GetZoneAttributesResponse
impl Unpin for GetZoneAttributesResponse
impl UnwindSafe for GetZoneAttributesResponse
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