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