pub struct CloseSchedule {
pub schedule_id: String,
pub company_code: String,
pub period_type: FiscalPeriodType,
pub tasks: Vec<ScheduledCloseTask>,
pub is_year_end: bool,
}Expand description
Period close schedule defining the order of tasks.
Fields§
§schedule_id: StringSchedule ID.
company_code: StringCompany code (or “ALL” for all companies).
period_type: FiscalPeriodTypePeriod type this schedule applies to.
tasks: Vec<ScheduledCloseTask>Ordered list of tasks.
is_year_end: boolWhether this is for year-end.
Implementations§
Source§impl CloseSchedule
impl CloseSchedule
Trait Implementations§
Source§impl Clone for CloseSchedule
impl Clone for CloseSchedule
Source§fn clone(&self) -> CloseSchedule
fn clone(&self) -> CloseSchedule
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 CloseSchedule
impl RefUnwindSafe for CloseSchedule
impl Send for CloseSchedule
impl Sync for CloseSchedule
impl Unpin for CloseSchedule
impl UnwindSafe for CloseSchedule
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