pub struct ConfirmationsConfig {
pub enabled: bool,
pub confirmation_count: usize,
pub positive_response_rate: f64,
pub exception_rate: f64,
pub non_response_rate: f64,
pub generate_alternative_procedures: bool,
}Expand description
External confirmations configuration (ISA 505).
Fields§
§enabled: boolEnable confirmation generation
confirmation_count: usizeNumber of confirmations to generate
positive_response_rate: f64Positive response rate
exception_rate: f64Exception rate (responses with differences)
non_response_rate: f64Non-response rate
generate_alternative_procedures: boolGenerate alternative procedures for non-responses
Trait Implementations§
Source§impl Clone for ConfirmationsConfig
impl Clone for ConfirmationsConfig
Source§fn clone(&self) -> ConfirmationsConfig
fn clone(&self) -> ConfirmationsConfig
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 ConfirmationsConfig
impl Debug for ConfirmationsConfig
Source§impl Default for ConfirmationsConfig
impl Default for ConfirmationsConfig
Source§impl<'de> Deserialize<'de> for ConfirmationsConfig
impl<'de> Deserialize<'de> for ConfirmationsConfig
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 ConfirmationsConfig
impl RefUnwindSafe for ConfirmationsConfig
impl Send for ConfirmationsConfig
impl Sync for ConfirmationsConfig
impl Unpin for ConfirmationsConfig
impl UnwindSafe for ConfirmationsConfig
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