pub enum ResonatorProfile {
Human,
World,
Coordination,
IBank,
}Expand description
Resonator profile determines constraints and behaviors
Different profiles enable different use cases:
- Human: Agency-first, consent required, safety priority
- World/Finalverse: Experience-focused, reversible consequences
- Coordination/Mapleverse: Explicit commitments, strong accountability
- IBank: AI-only, strict auditability, risk-bounded
Variants§
Human
Human Resonator - maximum agency protection
World
World/Finalverse Resonator - experiential environments
Coordination
Coordination/Mapleverse Resonator - pure AI agents
IBank
IBank Resonator - autonomous financial operations
Implementations§
Source§impl ResonatorProfile
impl ResonatorProfile
Sourcepub fn requires_agency_protection(&self) -> bool
pub fn requires_agency_protection(&self) -> bool
Does this profile require human agency protection?
Sourcepub fn requires_audit_trail(&self) -> bool
pub fn requires_audit_trail(&self) -> bool
Does this profile require strict audit trails?
Sourcepub fn prefers_reversibility(&self) -> bool
pub fn prefers_reversibility(&self) -> bool
Does this profile prefer reversible consequences?
Sourcepub fn can_couple_with(&self, other: &ResonatorProfile) -> bool
pub fn can_couple_with(&self, other: &ResonatorProfile) -> bool
Can this profile form couplings with other profiles?
Trait Implementations§
Source§impl Clone for ResonatorProfile
impl Clone for ResonatorProfile
Source§fn clone(&self) -> ResonatorProfile
fn clone(&self) -> ResonatorProfile
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 ResonatorProfile
impl Debug for ResonatorProfile
Source§impl Default for ResonatorProfile
impl Default for ResonatorProfile
Source§impl<'de> Deserialize<'de> for ResonatorProfile
impl<'de> Deserialize<'de> for ResonatorProfile
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 ResonatorProfile
impl PartialEq for ResonatorProfile
Source§impl Serialize for ResonatorProfile
impl Serialize for ResonatorProfile
impl Copy for ResonatorProfile
impl Eq for ResonatorProfile
impl StructuralPartialEq for ResonatorProfile
Auto Trait Implementations§
impl Freeze for ResonatorProfile
impl RefUnwindSafe for ResonatorProfile
impl Send for ResonatorProfile
impl Sync for ResonatorProfile
impl Unpin for ResonatorProfile
impl UnwindSafe for ResonatorProfile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.