pub struct ListOptions {
pub limit: u32,
pub offset: u32,
pub scope: Option<String>,
}Expand description
v0.8: pagination + scope filter for list_memories_with, surfaced
by the kimetsu_brain_memory_list MCP tool so an agent can page
through the corpus from inside Claude/Codex.
Fields§
§limit: u32Max project rows to return. 0 → 100 (the prior default).
offset: u32Project-row offset (for paging). 0 → first page.
scope: Option<String>Optional scope filter (global_user / project / repo / run).
Trait Implementations§
Source§impl Clone for ListOptions
impl Clone for ListOptions
Source§fn clone(&self) -> ListOptions
fn clone(&self) -> ListOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListOptions
impl Debug for ListOptions
Auto Trait Implementations§
impl Freeze for ListOptions
impl RefUnwindSafe for ListOptions
impl Send for ListOptions
impl Sync for ListOptions
impl Unpin for ListOptions
impl UnsafeUnpin for ListOptions
impl UnwindSafe for ListOptions
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