pub struct OverheadAllocation {
pub allocation_id: String,
pub source_company: String,
pub source_cost_center: String,
pub source_account: String,
pub allocation_basis: AllocationBasis,
pub targets: Vec<AllocationTarget>,
pub description: String,
pub is_active: bool,
}Expand description
Corporate overhead allocation definition.
Fields§
§allocation_id: StringAllocation ID.
source_company: StringSource company code (corporate).
source_cost_center: StringSource cost center.
source_account: StringSource account.
allocation_basis: AllocationBasisAllocation basis.
targets: Vec<AllocationTarget>Target allocations.
description: StringDescription.
is_active: boolActive flag.
Trait Implementations§
Source§impl Clone for OverheadAllocation
impl Clone for OverheadAllocation
Source§fn clone(&self) -> OverheadAllocation
fn clone(&self) -> OverheadAllocation
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 moreAuto Trait Implementations§
impl Freeze for OverheadAllocation
impl RefUnwindSafe for OverheadAllocation
impl Send for OverheadAllocation
impl Sync for OverheadAllocation
impl Unpin for OverheadAllocation
impl UnwindSafe for OverheadAllocation
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