pub struct AliquotaIss {
pub codigo_servico: String,
pub descricao: String,
pub aliquota: f32,
pub retencao: bool,
}Expand description
Tabela de alíquotas de ISS por código de serviço (LC 116/2003)
Fields§
§codigo_servico: StringCódigo do serviço (ex: “7.02”)
descricao: StringDescrição do serviço
aliquota: f32Alíquota de ISS (%)
retencao: boolISS retido na fonte?
Trait Implementations§
Source§impl Clone for AliquotaIss
impl Clone for AliquotaIss
Source§fn clone(&self) -> AliquotaIss
fn clone(&self) -> AliquotaIss
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 AliquotaIss
impl Debug for AliquotaIss
Source§impl<'de> Deserialize<'de> for AliquotaIss
impl<'de> Deserialize<'de> for AliquotaIss
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 AliquotaIss
impl RefUnwindSafe for AliquotaIss
impl Send for AliquotaIss
impl Sync for AliquotaIss
impl Unpin for AliquotaIss
impl UnsafeUnpin for AliquotaIss
impl UnwindSafe for AliquotaIss
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