pub struct OrganizationalProfile {
pub entity_code: String,
pub it_systems: Vec<ItSystem>,
pub regulatory_environment: Vec<String>,
pub prior_auditor: Option<String>,
pub org_structure_description: String,
}Expand description
High-level organizational profile of an audited entity.
Captures the IT systems, regulatory environment, prior auditor, and organizational structure that inform the auditor’s risk assessment under ISA 315 and engagement acceptance under ISA 220.
Fields§
§entity_code: StringEntity / company code this profile describes
it_systems: Vec<ItSystem>IT systems in use across the entity
regulatory_environment: Vec<String>Applicable regulatory regimes (e.g., “SOX”, “GDPR”, “Basel III”)
prior_auditor: Option<String>Name of the predecessor audit firm, if any
org_structure_description: StringNarrative description of the organizational structure
Trait Implementations§
Source§impl Clone for OrganizationalProfile
impl Clone for OrganizationalProfile
Source§fn clone(&self) -> OrganizationalProfile
fn clone(&self) -> OrganizationalProfile
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 OrganizationalProfile
impl Debug for OrganizationalProfile
Source§impl<'de> Deserialize<'de> for OrganizationalProfile
impl<'de> Deserialize<'de> for OrganizationalProfile
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 OrganizationalProfile
impl RefUnwindSafe for OrganizationalProfile
impl Send for OrganizationalProfile
impl Sync for OrganizationalProfile
impl Unpin for OrganizationalProfile
impl UnsafeUnpin for OrganizationalProfile
impl UnwindSafe for OrganizationalProfile
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