pub struct AvecState {
pub stability: f32,
pub friction: f32,
pub logic: f32,
pub autonomy: f32,
}Fields§
§stability: f32§friction: f32§logic: f32§autonomy: f32Implementations§
Source§impl AvecState
impl AvecState
pub fn psi(self) -> f32
pub fn drift_from(self, previous: Self) -> f32
pub fn classify_drift(self, previous: Self) -> DriftClassification
pub const fn zero() -> Self
pub const fn focused() -> Self
pub const fn creative() -> Self
pub const fn analytical() -> Self
pub const fn exploratory() -> Self
pub const fn collaborative() -> Self
pub const fn defensive() -> Self
pub const fn passive() -> Self
Trait Implementations§
impl Copy for AvecState
impl StructuralPartialEq for AvecState
Auto Trait Implementations§
impl Freeze for AvecState
impl RefUnwindSafe for AvecState
impl Send for AvecState
impl Sync for AvecState
impl Unpin for AvecState
impl UnsafeUnpin for AvecState
impl UnwindSafe for AvecState
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