pub struct Uncertainty {
pub assumptions: Vec<String>,
pub open_questions: Vec<String>,
pub decision_required: Vec<String>,
}Fields§
§assumptions: Vec<String>§open_questions: Vec<String>§decision_required: Vec<String>Trait Implementations§
Source§impl Clone for Uncertainty
impl Clone for Uncertainty
Source§fn clone(&self) -> Uncertainty
fn clone(&self) -> Uncertainty
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 Uncertainty
impl Debug for Uncertainty
Source§impl Default for Uncertainty
impl Default for Uncertainty
Source§fn default() -> Uncertainty
fn default() -> Uncertainty
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Uncertainty
impl RefUnwindSafe for Uncertainty
impl Send for Uncertainty
impl Sync for Uncertainty
impl Unpin for Uncertainty
impl UnsafeUnpin for Uncertainty
impl UnwindSafe for Uncertainty
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