pub struct AlternativeConsidered {
pub description: String,
pub rejected_reason: String,
}Expand description
A structured alternative considered during a decision (v0.3.3).
Fields§
§description: String§rejected_reason: StringTrait Implementations§
Source§impl Clone for AlternativeConsidered
impl Clone for AlternativeConsidered
Source§fn clone(&self) -> AlternativeConsidered
fn clone(&self) -> AlternativeConsidered
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 AlternativeConsidered
impl Debug for AlternativeConsidered
Source§impl<'de> Deserialize<'de> for AlternativeConsidered
impl<'de> Deserialize<'de> for AlternativeConsidered
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 AlternativeConsidered
impl RefUnwindSafe for AlternativeConsidered
impl Send for AlternativeConsidered
impl Sync for AlternativeConsidered
impl Unpin for AlternativeConsidered
impl UnsafeUnpin for AlternativeConsidered
impl UnwindSafe for AlternativeConsidered
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