pub struct LegalDocumentGeneratorConfig {
pub legal_opinion_min: u32,
pub legal_opinion_max: u32,
pub regulatory_filing_min: u32,
pub regulatory_filing_max: u32,
pub board_resolution_min: u32,
pub board_resolution_max: u32,
}Expand description
Configuration for the legal document generator.
Fields§
§legal_opinion_min: u32Minimum legal opinions per engagement (default: 0).
legal_opinion_max: u32Maximum legal opinions per engagement (default: 2).
regulatory_filing_min: u32Minimum regulatory filings per engagement (default: 1).
regulatory_filing_max: u32Maximum regulatory filings per engagement (default: 3).
board_resolution_min: u32Minimum board resolutions per engagement (default: 1).
board_resolution_max: u32Maximum board resolutions per engagement (default: 2).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LegalDocumentGeneratorConfig
impl RefUnwindSafe for LegalDocumentGeneratorConfig
impl Send for LegalDocumentGeneratorConfig
impl Sync for LegalDocumentGeneratorConfig
impl Unpin for LegalDocumentGeneratorConfig
impl UnsafeUnpin for LegalDocumentGeneratorConfig
impl UnwindSafe for LegalDocumentGeneratorConfig
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