pub struct LoteRps {
pub numero_lote: String,
pub cnpj_prestador: String,
pub inscricao_municipal_prestador: String,
pub quantidade_rps: u32,
pub lista_rps: Vec<RpsCompleto>,
}Expand description
Lote de RPS para envio
Fields§
§numero_lote: StringNúmero do lote
cnpj_prestador: StringCNPJ do prestador
inscricao_municipal_prestador: StringInscrição municipal do prestador
quantidade_rps: u32Quantidade de RPS no lote
lista_rps: Vec<RpsCompleto>Lista de RPS
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LoteRps
impl<'de> Deserialize<'de> for LoteRps
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LoteRps
impl RefUnwindSafe for LoteRps
impl Send for LoteRps
impl Sync for LoteRps
impl Unpin for LoteRps
impl UnsafeUnpin for LoteRps
impl UnwindSafe for LoteRps
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