pub struct ProposalContent<'a> {
pub executive_summary: Vec<&'a str>,
pub problem: Vec<&'a str>,
pub solution: Vec<&'a str>,
pub timeline: Vec<(&'a str, &'a str)>,
pub budget: Vec<(&'a str, &'a str)>,
pub next_steps: Vec<&'a str>,
}Expand description
Content for a business proposal presentation
Fields§
§executive_summary: Vec<&'a str>§problem: Vec<&'a str>§solution: Vec<&'a str>§timeline: Vec<(&'a str, &'a str)>§budget: Vec<(&'a str, &'a str)>§next_steps: Vec<&'a str>Trait Implementations§
Source§impl<'a> Clone for ProposalContent<'a>
impl<'a> Clone for ProposalContent<'a>
Source§fn clone(&self) -> ProposalContent<'a>
fn clone(&self) -> ProposalContent<'a>
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<'a> Debug for ProposalContent<'a>
impl<'a> Debug for ProposalContent<'a>
Auto Trait Implementations§
impl<'a> Freeze for ProposalContent<'a>
impl<'a> RefUnwindSafe for ProposalContent<'a>
impl<'a> Send for ProposalContent<'a>
impl<'a> Sync for ProposalContent<'a>
impl<'a> Unpin for ProposalContent<'a>
impl<'a> UnwindSafe for ProposalContent<'a>
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