pub struct PendingDeltas {
pub trust: f64,
pub intrigue: f64,
pub intimacy: f64,
pub tension: f64,
}Expand description
Per-axis balance the threshold gate is still holding back. Persisted as
JSONB on the affinity row; absent column reads as all-zero. A stale
"warmth" key from pre-4.0 rows is ignored by serde and drains naturally.
Fields§
§trust: f64§intrigue: f64§intimacy: f64§tension: f64Implementations§
Trait Implementations§
Source§impl Clone for PendingDeltas
impl Clone for PendingDeltas
Source§fn clone(&self) -> PendingDeltas
fn clone(&self) -> PendingDeltas
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 moreimpl Copy for PendingDeltas
Source§impl Debug for PendingDeltas
impl Debug for PendingDeltas
Source§impl Default for PendingDeltas
impl Default for PendingDeltas
Source§fn default() -> PendingDeltas
fn default() -> PendingDeltas
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PendingDeltas
impl<'de> Deserialize<'de> for PendingDeltas
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
Source§impl PartialEq for PendingDeltas
impl PartialEq for PendingDeltas
Source§impl Serialize for PendingDeltas
impl Serialize for PendingDeltas
impl StructuralPartialEq for PendingDeltas
Auto Trait Implementations§
impl Freeze for PendingDeltas
impl RefUnwindSafe for PendingDeltas
impl Send for PendingDeltas
impl Sync for PendingDeltas
impl Unpin for PendingDeltas
impl UnsafeUnpin for PendingDeltas
impl UnwindSafe for PendingDeltas
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