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