pub struct UnderwritingDecisionReport {
pub schema: String,
pub generated_at: u64,
pub policy: UnderwritingDecisionPolicy,
pub outcome: UnderwritingDecisionOutcome,
pub risk_class: UnderwritingRiskClass,
pub suggested_ceiling_factor: Option<f64>,
pub findings: Vec<UnderwritingDecisionFinding>,
pub input: UnderwritingPolicyInput,
}Fields§
§schema: String§generated_at: u64§policy: UnderwritingDecisionPolicy§outcome: UnderwritingDecisionOutcome§risk_class: UnderwritingRiskClass§suggested_ceiling_factor: Option<f64>§findings: Vec<UnderwritingDecisionFinding>§input: UnderwritingPolicyInputTrait Implementations§
Source§impl Clone for UnderwritingDecisionReport
impl Clone for UnderwritingDecisionReport
Source§fn clone(&self) -> UnderwritingDecisionReport
fn clone(&self) -> UnderwritingDecisionReport
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 UnderwritingDecisionReport
impl Debug for UnderwritingDecisionReport
Source§impl<'de> Deserialize<'de> for UnderwritingDecisionReport
impl<'de> Deserialize<'de> for UnderwritingDecisionReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnderwritingDecisionReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<UnderwritingDecisionReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for UnderwritingDecisionReport
impl Serialize for UnderwritingDecisionReport
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 UnderwritingDecisionReport
Auto Trait Implementations§
impl Freeze for UnderwritingDecisionReport
impl RefUnwindSafe for UnderwritingDecisionReport
impl Send for UnderwritingDecisionReport
impl Sync for UnderwritingDecisionReport
impl Unpin for UnderwritingDecisionReport
impl UnsafeUnpin for UnderwritingDecisionReport
impl UnwindSafe for UnderwritingDecisionReport
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