pub struct Impuestos {
pub total_impuestos_trasladados: Option<String>,
pub total_impuestos_retenidos: Option<String>,
pub traslados: Vec<Traslado>,
pub retenciones: Vec<Retencion>,
}Fields§
§total_impuestos_trasladados: Option<String>§total_impuestos_retenidos: Option<String>§traslados: Vec<Traslado>§retenciones: Vec<Retencion>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Impuestos
impl RefUnwindSafe for Impuestos
impl Send for Impuestos
impl Sync for Impuestos
impl Unpin for Impuestos
impl UnsafeUnpin for Impuestos
impl UnwindSafe for Impuestos
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