pub struct PhagicDigester { /* private fields */ }Expand description
Non-destructive digestive processor.
Implementations§
Source§impl PhagicDigester
impl PhagicDigester
Sourcepub const fn new(config: PhagicConfig) -> Self
pub const fn new(config: PhagicConfig) -> Self
Create a new digester with the specified configuration.
Sourcepub fn default_config() -> Self
pub fn default_config() -> Self
Create with default configuration.
Sourcepub const fn config(&self) -> &PhagicConfig
pub const fn config(&self) -> &PhagicConfig
Access configuration.
Sourcepub fn calculate_distance(
&self,
mem: &Memory,
now: DateTime<Utc>,
) -> OuterRimFactors
pub fn calculate_distance( &self, mem: &Memory, now: DateTime<Utc>, ) -> OuterRimFactors
Calculate distance factors for a memory.
Sourcepub fn scan_outer_rim(
&self,
store: &MemoryStore,
galaxy: Galaxy,
) -> Result<Vec<(Memory, OuterRimFactors)>>
pub fn scan_outer_rim( &self, store: &MemoryStore, galaxy: Galaxy, ) -> Result<Vec<(Memory, OuterRimFactors)>>
Scan a galaxy and identify outer-rim memories sorted by distance descending.
Sourcepub fn digest_cluster(
&self,
store: &MemoryStore,
search: Option<&SearchEngine>,
galaxy: Galaxy,
cluster: &[(Memory, OuterRimFactors)],
) -> Result<PhagicDigestReport>
pub fn digest_cluster( &self, store: &MemoryStore, search: Option<&SearchEngine>, galaxy: Galaxy, cluster: &[(Memory, OuterRimFactors)], ) -> Result<PhagicDigestReport>
Synthesize a cluster of outer-rim memories into a distilled thematic node in the hot tier, and gently migrate the original memories into the cold storage tier.
Sourcepub fn digest_galaxy(
&self,
store: &MemoryStore,
search: Option<&SearchEngine>,
galaxy: Galaxy,
) -> Result<PhagicDigestReport>
pub fn digest_galaxy( &self, store: &MemoryStore, search: Option<&SearchEngine>, galaxy: Galaxy, ) -> Result<PhagicDigestReport>
Perform a full non-destructive digestive pass on a galaxy.
Sourcepub fn digest_all(
&self,
store: &MemoryStore,
search: Option<&SearchEngine>,
) -> Result<Vec<PhagicDigestReport>>
pub fn digest_all( &self, store: &MemoryStore, search: Option<&SearchEngine>, ) -> Result<Vec<PhagicDigestReport>>
Perform phagic digestion across all memory galaxies.
Sourcepub fn thaw(
&self,
store: &MemoryStore,
search: Option<&SearchEngine>,
id: MemoryId,
) -> Result<Memory>
pub fn thaw( &self, store: &MemoryStore, search: Option<&SearchEngine>, id: MemoryId, ) -> Result<Memory>
Thaw a cold-stored memory back into the active hot tier.
Auto Trait Implementations§
impl Freeze for PhagicDigester
impl RefUnwindSafe for PhagicDigester
impl Send for PhagicDigester
impl Sync for PhagicDigester
impl Unpin for PhagicDigester
impl UnsafeUnpin for PhagicDigester
impl UnwindSafe for PhagicDigester
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<T> Fruit for T
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