pub struct UnderwritingSimulationReport {
pub schema: String,
pub generated_at: u64,
pub input: UnderwritingPolicyInput,
pub default_evaluation: UnderwritingDecisionReport,
pub simulated_evaluation: UnderwritingDecisionReport,
pub delta: UnderwritingSimulationDelta,
}Fields§
§schema: String§generated_at: u64§input: UnderwritingPolicyInput§default_evaluation: UnderwritingDecisionReport§simulated_evaluation: UnderwritingDecisionReport§delta: UnderwritingSimulationDeltaTrait Implementations§
Source§impl Clone for UnderwritingSimulationReport
impl Clone for UnderwritingSimulationReport
Source§fn clone(&self) -> UnderwritingSimulationReport
fn clone(&self) -> UnderwritingSimulationReport
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 UnderwritingSimulationReport
impl Debug for UnderwritingSimulationReport
Source§impl<'de> Deserialize<'de> for UnderwritingSimulationReport
impl<'de> Deserialize<'de> for UnderwritingSimulationReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnderwritingSimulationReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnderwritingSimulationReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UnderwritingSimulationReport
impl PartialEq for UnderwritingSimulationReport
Source§fn eq(&self, other: &UnderwritingSimulationReport) -> bool
fn eq(&self, other: &UnderwritingSimulationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UnderwritingSimulationReport
impl Serialize for UnderwritingSimulationReport
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 UnderwritingSimulationReport
Auto Trait Implementations§
impl Freeze for UnderwritingSimulationReport
impl RefUnwindSafe for UnderwritingSimulationReport
impl Send for UnderwritingSimulationReport
impl Sync for UnderwritingSimulationReport
impl Unpin for UnderwritingSimulationReport
impl UnsafeUnpin for UnderwritingSimulationReport
impl UnwindSafe for UnderwritingSimulationReport
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