pub struct RaciMatrix {
pub responsible: Vec<String>,
pub accountable: Vec<String>,
pub consulted: Vec<String>,
pub informed: Vec<String>,
}Expand description
RACI matrix for decision responsibility assignment
Fields§
§responsible: Vec<String>Responsible - Those who do the work to complete the task
accountable: Vec<String>Accountable - The one ultimately answerable for the decision
consulted: Vec<String>Consulted - Those whose opinions are sought
informed: Vec<String>Informed - Those who are kept up-to-date on progress
Implementations§
Trait Implementations§
Source§impl Clone for RaciMatrix
impl Clone for RaciMatrix
Source§fn clone(&self) -> RaciMatrix
fn clone(&self) -> RaciMatrix
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 RaciMatrix
impl Debug for RaciMatrix
Source§impl Default for RaciMatrix
impl Default for RaciMatrix
Source§fn default() -> RaciMatrix
fn default() -> RaciMatrix
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RaciMatrix
impl<'de> Deserialize<'de> for RaciMatrix
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
Source§impl PartialEq for RaciMatrix
impl PartialEq for RaciMatrix
Source§impl Serialize for RaciMatrix
impl Serialize for RaciMatrix
impl StructuralPartialEq for RaciMatrix
Auto Trait Implementations§
impl Freeze for RaciMatrix
impl RefUnwindSafe for RaciMatrix
impl Send for RaciMatrix
impl Sync for RaciMatrix
impl Unpin for RaciMatrix
impl UnwindSafe for RaciMatrix
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