Skip to main content

EncounterResult

Struct EncounterResult 

Source
pub struct EncounterResult {
    pub participants: Vec<String>,
    pub practice: Option<String>,
    pub beats: Vec<Beat>,
    pub relationship_deltas: Vec<Effect>,
    pub knowledge_transfers: Vec<Effect>,
    pub emotional_events: Vec<Effect>,
    pub mood_shifts: Vec<Effect>,
    pub need_satisfactions: Vec<Effect>,
    pub value_shifts: Vec<Effect>,
    pub practice_exits: Vec<Effect>,
    pub escalation_requested: bool,
    pub escalation_requests: Vec<EscalationRequest>,
}
Expand description

Aggregated output of a resolved encounter.

Each Effect variant has a corresponding aggregate bucket; consumers may either walk beats[*].effects for fully ordered context, or read the per-variant buckets when only one effect kind is needed.

Fields§

§participants: Vec<String>

Characters who participated.

§practice: Option<String>

The practice that framed this encounter, if any.

§beats: Vec<Beat>

Ordered sequence of beats that occurred.

§relationship_deltas: Vec<Effect>

All Effect::RelationshipDelta effects from all beats.

§knowledge_transfers: Vec<Effect>

All Effect::KnowledgeTransfer effects from all beats.

§emotional_events: Vec<Effect>

All Effect::EmotionalEvent effects from all beats.

§mood_shifts: Vec<Effect>

All Effect::MoodShift effects from all beats.

§need_satisfactions: Vec<Effect>

All Effect::NeedSatisfaction effects from all beats.

§value_shifts: Vec<Effect>

All Effect::ValueShift effects from all beats.

§practice_exits: Vec<Effect>

All Effect::PracticeExit effects from all beats.

§escalation_requested: bool

Whether any participant requested escalation.

§escalation_requests: Vec<EscalationRequest>

Escalation requests emitted during the encounter.

Implementations§

Source§

impl EncounterResult

Source

pub fn new(participants: Vec<String>, practice: Option<String>) -> Self

Create a new, empty result for the given participants and optional practice.

Source

pub fn push_beat(&mut self, beat: Beat)

Append a beat and categorize each effect into its corresponding bucket.

Every Effect variant is mirrored into a typed aggregate field; the beat’s full effects vec is also preserved on beats.

Trait Implementations§

Source§

impl Clone for EncounterResult

Source§

fn clone(&self) -> EncounterResult

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EncounterResult

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for EncounterResult

Source§

fn eq(&self, other: &EncounterResult) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for EncounterResult

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for EncounterResult

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.