pub enum StanceOutcome {
Held,
Shifted,
Conceded,
}Expand description
How a debating agent’s position changed over the course of a debate.
Carried inside CouncilEvent::DebateStanceMap.
Variants§
Held
The agent maintained its original position throughout all rounds.
Shifted
The agent moved toward a different position by the final round.
Conceded
The agent explicitly conceded to another agent’s argument.
Trait Implementations§
Source§impl Clone for StanceOutcome
impl Clone for StanceOutcome
Source§fn clone(&self) -> StanceOutcome
fn clone(&self) -> StanceOutcome
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 StanceOutcome
impl Debug for StanceOutcome
Source§impl<'de> Deserialize<'de> for StanceOutcome
impl<'de> Deserialize<'de> for StanceOutcome
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 StanceOutcome
impl RefUnwindSafe for StanceOutcome
impl Send for StanceOutcome
impl Sync for StanceOutcome
impl Unpin for StanceOutcome
impl UnwindSafe for StanceOutcome
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