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