pub struct CloseReadinessResult {
pub company_code: String,
pub fiscal_period: FiscalPeriod,
pub is_ready: bool,
pub blockers: Vec<String>,
pub warnings: Vec<String>,
}Expand description
Result of close readiness validation.
Fields§
§company_code: StringCompany code.
fiscal_period: FiscalPeriodFiscal period.
is_ready: boolWhether the period is ready to close.
blockers: Vec<String>Blocking issues that prevent close.
warnings: Vec<String>Non-blocking warnings.
Trait Implementations§
Source§impl Clone for CloseReadinessResult
impl Clone for CloseReadinessResult
Source§fn clone(&self) -> CloseReadinessResult
fn clone(&self) -> CloseReadinessResult
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 CloseReadinessResult
impl RefUnwindSafe for CloseReadinessResult
impl Send for CloseReadinessResult
impl Sync for CloseReadinessResult
impl Unpin for CloseReadinessResult
impl UnwindSafe for CloseReadinessResult
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