TaxableLine

Trait TaxableLine 

Source
pub trait TaxableLine {
    // Required method
    fn set_taxable(&mut self);
}
Expand description

Trait for setting a line / line detail as taxable

Required Methods§

Source

fn set_taxable(&mut self)

Implementations on Foreign Types§

Source§

impl TaxableLine for Option<LineField>

Source§

fn set_taxable(&mut self)

Source§

impl<T> TaxableLine for IterMut<'_, T>
where T: TaxableLine,

Source§

fn set_taxable(&mut self)

Implementors§