pub struct LegalDocument {
pub document_id: Uuid,
pub document_type: String,
pub entity_code: String,
pub date: NaiveDate,
pub title: String,
pub signatories: Vec<String>,
pub key_terms: Vec<String>,
pub status: String,
}Expand description
A legal document associated with an audit engagement.
Examples include engagement letters (ISA 210), management representation letters (ISA 580), legal opinions, regulatory filings, and board resolutions.
Fields§
§document_id: UuidUnique identifier for this document.
document_type: StringDocument type classification.
Common values: engagement_letter, management_rep,
legal_opinion, regulatory_filing, board_resolution.
entity_code: StringEntity code this document belongs to.
date: NaiveDateDate the document was issued or signed.
title: StringHuman-readable title.
signatories: Vec<String>Names or roles of signatories.
key_terms: Vec<String>Key contractual or regulatory terms.
status: StringCurrent lifecycle status.
Common values: draft, final, signed, expired.
Trait Implementations§
Source§impl Clone for LegalDocument
impl Clone for LegalDocument
Source§fn clone(&self) -> LegalDocument
fn clone(&self) -> LegalDocument
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 LegalDocument
impl Debug for LegalDocument
Source§impl<'de> Deserialize<'de> for LegalDocument
impl<'de> Deserialize<'de> for LegalDocument
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 LegalDocument
impl RefUnwindSafe for LegalDocument
impl Send for LegalDocument
impl Sync for LegalDocument
impl Unpin for LegalDocument
impl UnsafeUnpin for LegalDocument
impl UnwindSafe for LegalDocument
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