pub struct PresenceVector {
pub liveness: f32,
pub immediacy: f32,
pub coherence: f32,
pub relational_continuity: f32,
pub emotional_bandwidth: f32,
}Expand description
Presence vector measuring “whether reality still feels alive”.
ELARA does not measure quality with bitrate, FPS, jitter, or packet loss. ELARA measures presence as a 5-dimensional vector.
P = ⟨L, I, C, R, E⟩
Fields§
§liveness: f32L - Liveness: Is there still a sign of existence? [0.0 - 1.0]
immediacy: f32I - Immediacy: How close to “now”? [0.0 - 1.0]
coherence: f32C - Coherence: Can it still be understood? [0.0 - 1.0]
relational_continuity: f32R - Relational Continuity: Does the relationship still feel intact? [0.0 - 1.0]
emotional_bandwidth: f32E - Emotional Bandwidth: Is emotional meaning still carried? [0.0 - 1.0]
Implementations§
Source§impl PresenceVector
impl PresenceVector
Trait Implementations§
Source§impl Clone for PresenceVector
impl Clone for PresenceVector
Source§fn clone(&self) -> PresenceVector
fn clone(&self) -> PresenceVector
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 PresenceVector
impl Debug for PresenceVector
Source§impl Default for PresenceVector
impl Default for PresenceVector
Source§impl Display for PresenceVector
impl Display for PresenceVector
Source§impl PartialEq for PresenceVector
impl PartialEq for PresenceVector
impl Copy for PresenceVector
impl StructuralPartialEq for PresenceVector
Auto Trait Implementations§
impl Freeze for PresenceVector
impl RefUnwindSafe for PresenceVector
impl Send for PresenceVector
impl Sync for PresenceVector
impl Unpin for PresenceVector
impl UnwindSafe for PresenceVector
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