pub struct IndustryBenchmark {
pub industry: String,
pub metric: String,
pub value: Decimal,
pub source: String,
pub period: String,
}Expand description
An industry benchmark metric representing a synthetic peer-group average.
Auditors use industry benchmarks (ISA 520 analytical procedures) to compare an entity’s financial ratios and KPIs against sector norms. These benchmarks are entirely synthetic and labeled as such.
Fields§
§industry: StringIndustry this benchmark applies to (e.g., “retail”, “manufacturing”)
metric: StringMetric name (e.g., “gross_margin_pct”, “current_ratio”)
value: DecimalThe benchmark value
source: StringSource attribution — always synthetic
period: StringFiscal period label (e.g., “FY2025”)
Trait Implementations§
Source§impl Clone for IndustryBenchmark
impl Clone for IndustryBenchmark
Source§fn clone(&self) -> IndustryBenchmark
fn clone(&self) -> IndustryBenchmark
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 IndustryBenchmark
impl Debug for IndustryBenchmark
Source§impl<'de> Deserialize<'de> for IndustryBenchmark
impl<'de> Deserialize<'de> for IndustryBenchmark
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
Auto Trait Implementations§
impl Freeze for IndustryBenchmark
impl RefUnwindSafe for IndustryBenchmark
impl Send for IndustryBenchmark
impl Sync for IndustryBenchmark
impl Unpin for IndustryBenchmark
impl UnsafeUnpin for IndustryBenchmark
impl UnwindSafe for IndustryBenchmark
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