pub struct BoardMinutes {
pub meeting_id: Uuid,
pub meeting_date: NaiveDate,
pub meeting_type: String,
pub attendees: Vec<String>,
pub key_decisions: Vec<String>,
pub risk_discussions: Vec<String>,
pub audit_committee_matters: Vec<String>,
}Expand description
Minutes of a board or audit committee meeting.
Auditors review board minutes (ISA 300, ISA 315) to understand the governance environment, key decisions, and risk discussions that may affect the audit approach.
Fields§
§meeting_id: UuidUnique identifier for this meeting
meeting_date: NaiveDateDate of the meeting
meeting_type: StringType of meeting: “regular”, “special”, or “audit_committee”
attendees: Vec<String>Names or IDs of attendees
key_decisions: Vec<String>Key decisions made during the meeting
risk_discussions: Vec<String>Risk topics discussed
audit_committee_matters: Vec<String>Matters specifically discussed by or relevant to the audit committee
Trait Implementations§
Source§impl Clone for BoardMinutes
impl Clone for BoardMinutes
Source§fn clone(&self) -> BoardMinutes
fn clone(&self) -> BoardMinutes
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 BoardMinutes
impl Debug for BoardMinutes
Source§impl<'de> Deserialize<'de> for BoardMinutes
impl<'de> Deserialize<'de> for BoardMinutes
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 BoardMinutes
impl RefUnwindSafe for BoardMinutes
impl Send for BoardMinutes
impl Sync for BoardMinutes
impl Unpin for BoardMinutes
impl UnsafeUnpin for BoardMinutes
impl UnwindSafe for BoardMinutes
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