pub struct RunFilter {
pub agent: Option<String>,
pub since: Option<DateTime<Utc>>,
pub until: Option<DateTime<Utc>>,
pub limit: Option<usize>,
}Expand description
Re-exports every public item from klieo-core.
Filter passed to EpisodicMemory::list_runs.
Fields§
§agent: Option<String>Filter by agent name (substring match).
since: Option<DateTime<Utc>>Inclusive lower bound on started_at.
until: Option<DateTime<Utc>>Inclusive upper bound on started_at.
limit: Option<usize>Maximum rows returned.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RunFilter
impl RefUnwindSafe for RunFilter
impl Send for RunFilter
impl Sync for RunFilter
impl Unpin for RunFilter
impl UnsafeUnpin for RunFilter
impl UnwindSafe for RunFilter
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