pub struct DecisionBlock {
pub name: String,
pub date: String,
pub reason: String,
pub chosen: String,
pub rejected: Vec<String>,
pub impacts: Vec<String>,
pub author: Option<String>,
}Fields§
§name: String§date: String§reason: String§chosen: String§rejected: Vec<String>§impacts: Vec<String>Trait Implementations§
Source§impl Clone for DecisionBlock
impl Clone for DecisionBlock
Source§fn clone(&self) -> DecisionBlock
fn clone(&self) -> DecisionBlock
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 DecisionBlock
impl Debug for DecisionBlock
Source§impl PartialEq for DecisionBlock
impl PartialEq for DecisionBlock
impl StructuralPartialEq for DecisionBlock
Auto Trait Implementations§
impl Freeze for DecisionBlock
impl RefUnwindSafe for DecisionBlock
impl Send for DecisionBlock
impl Sync for DecisionBlock
impl Unpin for DecisionBlock
impl UnsafeUnpin for DecisionBlock
impl UnwindSafe for DecisionBlock
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