pub struct EsgDisclosure {
pub id: String,
pub entity_id: String,
pub reporting_period_start: NaiveDate,
pub reporting_period_end: NaiveDate,
pub framework: EsgFramework,
pub assurance_level: AssuranceLevel,
pub disclosure_topic: String,
pub metric_value: String,
pub metric_unit: String,
pub is_assured: bool,
}Expand description
An ESG disclosure record.
Fields§
§id: String§entity_id: String§reporting_period_start: NaiveDate§reporting_period_end: NaiveDate§framework: EsgFramework§assurance_level: AssuranceLevel§disclosure_topic: String§metric_value: String§metric_unit: String§is_assured: boolTrait Implementations§
Source§impl Clone for EsgDisclosure
impl Clone for EsgDisclosure
Source§fn clone(&self) -> EsgDisclosure
fn clone(&self) -> EsgDisclosure
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 EsgDisclosure
impl Debug for EsgDisclosure
Source§impl<'de> Deserialize<'de> for EsgDisclosure
impl<'de> Deserialize<'de> for EsgDisclosure
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 EsgDisclosure
impl Serialize for EsgDisclosure
Source§impl ToNodeProperties for EsgDisclosure
impl ToNodeProperties for EsgDisclosure
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 EsgDisclosure
impl RefUnwindSafe for EsgDisclosure
impl Send for EsgDisclosure
impl Sync for EsgDisclosure
impl Unpin for EsgDisclosure
impl UnsafeUnpin for EsgDisclosure
impl UnwindSafe for EsgDisclosure
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