pub struct ReviewWorkflowConfig {
pub average_review_delay_days: u32,
pub rework_probability: f64,
pub require_partner_signoff: bool,
}Expand description
Review workflow configuration.
Fields§
§average_review_delay_days: u32Average days between preparer completion and first review
rework_probability: f64Probability of review notes requiring rework
require_partner_signoff: boolRequire partner sign-off for all workpapers
Trait Implementations§
Source§impl Clone for ReviewWorkflowConfig
impl Clone for ReviewWorkflowConfig
Source§fn clone(&self) -> ReviewWorkflowConfig
fn clone(&self) -> ReviewWorkflowConfig
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 moreSource§impl Debug for ReviewWorkflowConfig
impl Debug for ReviewWorkflowConfig
Source§impl Default for ReviewWorkflowConfig
impl Default for ReviewWorkflowConfig
Source§impl<'de> Deserialize<'de> for ReviewWorkflowConfig
impl<'de> Deserialize<'de> for ReviewWorkflowConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ReviewWorkflowConfig
impl RefUnwindSafe for ReviewWorkflowConfig
impl Send for ReviewWorkflowConfig
impl Sync for ReviewWorkflowConfig
impl Unpin for ReviewWorkflowConfig
impl UnwindSafe for ReviewWorkflowConfig
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