pub struct IsaStandardEntry {
pub number: String,
pub title: String,
pub series: String,
pub display_name: String,
}Expand description
A flat, serializable entry for a single ISA standard (used for isa_mappings.json output).
Fields§
§number: StringStandard number (e.g., “315”).
title: StringFull title (e.g., “Identifying and Assessing Risks of Material Misstatement”).
series: StringISA series label (e.g., “Risk Assessment and Response”).
display_name: StringCanonical display name (e.g., “ISA 315”).
Implementations§
Source§impl IsaStandardEntry
impl IsaStandardEntry
Sourcepub fn from_standard(standard: IsaStandard) -> Self
pub fn from_standard(standard: IsaStandard) -> Self
Build from an IsaStandard enum variant.
Trait Implementations§
Source§impl Clone for IsaStandardEntry
impl Clone for IsaStandardEntry
Source§fn clone(&self) -> IsaStandardEntry
fn clone(&self) -> IsaStandardEntry
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 IsaStandardEntry
impl Debug for IsaStandardEntry
Source§impl<'de> Deserialize<'de> for IsaStandardEntry
impl<'de> Deserialize<'de> for IsaStandardEntry
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 IsaStandardEntry
impl RefUnwindSafe for IsaStandardEntry
impl Send for IsaStandardEntry
impl Sync for IsaStandardEntry
impl Unpin for IsaStandardEntry
impl UnsafeUnpin for IsaStandardEntry
impl UnwindSafe for IsaStandardEntry
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