pub struct StatusContent<'a> {
pub summary: Vec<&'a str>,
pub completed: Vec<&'a str>,
pub in_progress: Vec<&'a str>,
pub blocked: Vec<&'a str>,
pub next_week: Vec<&'a str>,
pub metrics: Vec<(&'a str, &'a str)>,
}Expand description
Content for a status report presentation
Fields§
§summary: Vec<&'a str>§completed: Vec<&'a str>§in_progress: Vec<&'a str>§blocked: Vec<&'a str>§next_week: Vec<&'a str>§metrics: Vec<(&'a str, &'a str)>Trait Implementations§
Source§impl<'a> Clone for StatusContent<'a>
impl<'a> Clone for StatusContent<'a>
Source§fn clone(&self) -> StatusContent<'a>
fn clone(&self) -> StatusContent<'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 StatusContent<'a>
impl<'a> Debug for StatusContent<'a>
Auto Trait Implementations§
impl<'a> Freeze for StatusContent<'a>
impl<'a> RefUnwindSafe for StatusContent<'a>
impl<'a> Send for StatusContent<'a>
impl<'a> Sync for StatusContent<'a>
impl<'a> Unpin for StatusContent<'a>
impl<'a> UnwindSafe for StatusContent<'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