pub struct HumanDecisionPoint {
pub id: String,
pub question: String,
}Expand description
Human decision point declared by a mission.
Fields§
§id: StringIdentifier for the decision point.
question: StringQuestion posed to the human.
Implementations§
Trait Implementations§
Source§impl Clone for HumanDecisionPoint
impl Clone for HumanDecisionPoint
Source§fn clone(&self) -> HumanDecisionPoint
fn clone(&self) -> HumanDecisionPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HumanDecisionPoint
impl Debug for HumanDecisionPoint
impl Eq for HumanDecisionPoint
Source§impl PartialEq for HumanDecisionPoint
impl PartialEq for HumanDecisionPoint
Source§fn eq(&self, other: &HumanDecisionPoint) -> bool
fn eq(&self, other: &HumanDecisionPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for HumanDecisionPoint
Auto Trait Implementations§
impl Freeze for HumanDecisionPoint
impl RefUnwindSafe for HumanDecisionPoint
impl Send for HumanDecisionPoint
impl Sync for HumanDecisionPoint
impl Unpin for HumanDecisionPoint
impl UnsafeUnpin for HumanDecisionPoint
impl UnwindSafe for HumanDecisionPoint
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