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