pub struct EricResponse {
pub error_code: i32,
pub validation_response: String,
pub server_response: String,
}
Expand description
A structure which summarizes the response from the Eric instance.
Fields§
§error_code: i32
The error code returned by the Eric instance.
validation_response: String
The response when validating an XML file.
server_response: String
The response when an XML file is send to the tax authorities.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EricResponse
impl RefUnwindSafe for EricResponse
impl Send for EricResponse
impl Sync for EricResponse
impl Unpin for EricResponse
impl UnwindSafe for EricResponse
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