pub struct UnderwritingSimulationDelta {
pub outcome_changed: bool,
pub risk_class_changed: bool,
pub added_reasons: Vec<String>,
pub removed_reasons: Vec<String>,
pub default_ceiling_factor: Option<f64>,
pub simulated_ceiling_factor: Option<f64>,
}Fields§
§outcome_changed: bool§risk_class_changed: bool§added_reasons: Vec<String>§removed_reasons: Vec<String>§default_ceiling_factor: Option<f64>§simulated_ceiling_factor: Option<f64>Trait Implementations§
Source§impl Clone for UnderwritingSimulationDelta
impl Clone for UnderwritingSimulationDelta
Source§fn clone(&self) -> UnderwritingSimulationDelta
fn clone(&self) -> UnderwritingSimulationDelta
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 UnderwritingSimulationDelta
impl Debug for UnderwritingSimulationDelta
Source§impl<'de> Deserialize<'de> for UnderwritingSimulationDelta
impl<'de> Deserialize<'de> for UnderwritingSimulationDelta
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnderwritingSimulationDelta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnderwritingSimulationDelta, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for UnderwritingSimulationDelta
impl Serialize for UnderwritingSimulationDelta
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for UnderwritingSimulationDelta
Auto Trait Implementations§
impl Freeze for UnderwritingSimulationDelta
impl RefUnwindSafe for UnderwritingSimulationDelta
impl Send for UnderwritingSimulationDelta
impl Sync for UnderwritingSimulationDelta
impl Unpin for UnderwritingSimulationDelta
impl UnsafeUnpin for UnderwritingSimulationDelta
impl UnwindSafe for UnderwritingSimulationDelta
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