pub struct DecisionEntry {
pub record: String,
pub field: String,
pub chosen: String,
pub alternative: String,
pub reason: String,
pub timestamp: String,
}Expand description
One [[decisions]] entry — architectural rationale.
Fields§
§record: String§field: String§chosen: String§alternative: String§reason: String§timestamp: StringTrait Implementations§
Source§impl Clone for DecisionEntry
impl Clone for DecisionEntry
Source§fn clone(&self) -> DecisionEntry
fn clone(&self) -> DecisionEntry
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 DecisionEntry
impl Debug for DecisionEntry
Source§impl<'de> Deserialize<'de> for DecisionEntry
impl<'de> Deserialize<'de> for DecisionEntry
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
Auto Trait Implementations§
impl Freeze for DecisionEntry
impl RefUnwindSafe for DecisionEntry
impl Send for DecisionEntry
impl Sync for DecisionEntry
impl Unpin for DecisionEntry
impl UnsafeUnpin for DecisionEntry
impl UnwindSafe for DecisionEntry
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