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