pub struct NFeServiceResponse {
pub c_stat: String,
pub x_motivo: String,
pub sent_xml: String,
pub received_xml: String,
pub url: String,
}Expand description
Resposta da consulta de status do webservice SEFAZ.
Fields§
§c_stat: StringCódigo de status ("107" = serviço em operação).
x_motivo: StringDescrição do status retornado pela SEFAZ.
sent_xml: StringXML enviado na requisição SOAP.
received_xml: StringXML recebido da SEFAZ.
url: StringURL do endpoint consultado.
Trait Implementations§
Source§impl Debug for NFeServiceResponse
impl Debug for NFeServiceResponse
Auto Trait Implementations§
impl Freeze for NFeServiceResponse
impl RefUnwindSafe for NFeServiceResponse
impl Send for NFeServiceResponse
impl Sync for NFeServiceResponse
impl Unpin for NFeServiceResponse
impl UnsafeUnpin for NFeServiceResponse
impl UnwindSafe for NFeServiceResponse
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