pub struct MobKitRealmStoreSet {
pub continuity_store: Arc<dyn ContinuityStore>,
pub lease_authority: MobKitLeaseAuthority,
pub event_log_store: Option<Box<dyn EventLogStore>>,
pub console_log_store: Arc<dyn ConsoleLogStore>,
pub metadata_store: Arc<dyn PersistentMetadataStore>,
pub blob_store: Arc<dyn BinaryBlobStore>,
pub agent_memory_provider: Option<Arc<dyn AgentMemoryProvider>>,
pub schedule_store: Arc<dyn ScheduleStore>,
pub durability: Vec<DurabilityDeclaration>,
}Expand description
The realm-wide MobKit stores a provider supplies, each slot covered by a
DurabilityDeclaration in Self::durability.
event_log_store and agent_memory_provider are optional features:
None means the provider supplies no backend for them (the composition
keeps its declared defaults — no event ingestion / no agent memory) and
the corresponding declaration records that as an explicit choice.
Fields§
§continuity_store: Arc<dyn ContinuityStore>§event_log_store: Option<Box<dyn EventLogStore>>§console_log_store: Arc<dyn ConsoleLogStore>§metadata_store: Arc<dyn PersistentMetadataStore>§blob_store: Arc<dyn BinaryBlobStore>§agent_memory_provider: Option<Arc<dyn AgentMemoryProvider>>§schedule_store: Arc<dyn ScheduleStore>§durability: Vec<DurabilityDeclaration>Per-slot durability declarations, machine-readable. Domain names:
continuity, event_log, console, metadata, blobs,
agent_memory, schedule.
Auto Trait Implementations§
impl !RefUnwindSafe for MobKitRealmStoreSet
impl !UnwindSafe for MobKitRealmStoreSet
impl Freeze for MobKitRealmStoreSet
impl Send for MobKitRealmStoreSet
impl Sync for MobKitRealmStoreSet
impl Unpin for MobKitRealmStoreSet
impl UnsafeUnpin for MobKitRealmStoreSet
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> CoreExecutorTurnFinalizationGuard for Twhere
T: Send,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more