pub struct ClimateScenario {
pub id: String,
pub entity_id: String,
pub scenario_type: ScenarioType,
pub time_horizon: TimeHorizon,
pub description: String,
pub temperature_rise_c: Decimal,
pub transition_risk_impact: Decimal,
pub physical_risk_impact: Decimal,
pub financial_impact: Decimal,
}Expand description
A TCFD climate scenario analysis record.
Fields§
§id: String§entity_id: String§scenario_type: ScenarioType§time_horizon: TimeHorizon§description: String§temperature_rise_c: Decimal§transition_risk_impact: Decimal§physical_risk_impact: Decimal§financial_impact: DecimalTrait Implementations§
Source§impl Clone for ClimateScenario
impl Clone for ClimateScenario
Source§fn clone(&self) -> ClimateScenario
fn clone(&self) -> ClimateScenario
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 ClimateScenario
impl Debug for ClimateScenario
Source§impl<'de> Deserialize<'de> for ClimateScenario
impl<'de> Deserialize<'de> for ClimateScenario
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
Source§impl Serialize for ClimateScenario
impl Serialize for ClimateScenario
Source§impl ToNodeProperties for ClimateScenario
impl ToNodeProperties for ClimateScenario
Source§fn node_type_name(&self) -> &'static str
fn node_type_name(&self) -> &'static str
Entity type name (snake_case), e.g.
"uncertain_tax_position".Source§fn node_type_code(&self) -> u16
fn node_type_code(&self) -> u16
Numeric entity type code for registry, e.g.
416.Source§fn to_node_properties(&self) -> HashMap<String, GraphPropertyValue>
fn to_node_properties(&self) -> HashMap<String, GraphPropertyValue>
Convert all fields to a property map with camelCase keys.
Auto Trait Implementations§
impl Freeze for ClimateScenario
impl RefUnwindSafe for ClimateScenario
impl Send for ClimateScenario
impl Sync for ClimateScenario
impl Unpin for ClimateScenario
impl UnsafeUnpin for ClimateScenario
impl UnwindSafe for ClimateScenario
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