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