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