pub struct GetRemainingSleepTimerDurationResponse {
pub remaining_sleep_timer_duration: Option<String>,
pub current_sleep_timer_generation: Option<u32>,
}Fields§
§remaining_sleep_timer_duration: Option<String>§current_sleep_timer_generation: Option<u32>Trait Implementations§
Source§impl Clone for GetRemainingSleepTimerDurationResponse
impl Clone for GetRemainingSleepTimerDurationResponse
Source§fn clone(&self) -> GetRemainingSleepTimerDurationResponse
fn clone(&self) -> GetRemainingSleepTimerDurationResponse
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 DecodeSoapResponse for GetRemainingSleepTimerDurationResponse
impl DecodeSoapResponse for GetRemainingSleepTimerDurationResponse
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 GetRemainingSleepTimerDurationResponse
impl<'xml> FromXml<'xml> for GetRemainingSleepTimerDurationResponse
const KIND: Kind = ::instant_xml::Kind::Element
type Accumulator = Option<GetRemainingSleepTimerDurationResponse>
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 GetRemainingSleepTimerDurationResponse
impl PartialEq for GetRemainingSleepTimerDurationResponse
Source§fn eq(&self, other: &GetRemainingSleepTimerDurationResponse) -> bool
fn eq(&self, other: &GetRemainingSleepTimerDurationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetRemainingSleepTimerDurationResponse
Auto Trait Implementations§
impl Freeze for GetRemainingSleepTimerDurationResponse
impl RefUnwindSafe for GetRemainingSleepTimerDurationResponse
impl Send for GetRemainingSleepTimerDurationResponse
impl Sync for GetRemainingSleepTimerDurationResponse
impl Unpin for GetRemainingSleepTimerDurationResponse
impl UnwindSafe for GetRemainingSleepTimerDurationResponse
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