pub struct SessionsParams {
pub proxy: Option<String>,
pub since_ts: i64,
pub limit: i64,
pub active_only: bool,
pub client: Option<String>,
}Expand description
Filter parameters for the sessions query.
Fields§
§proxy: Option<String>Proxy name to filter by (None = all proxies).
since_ts: i64Only sessions started after this unix ms timestamp.
limit: i64Maximum number of rows to return.
active_only: boolOnly show active sessions (seen within the active threshold).
client: Option<String>Filter by client name (e.g., “claude-desktop”).
Auto Trait Implementations§
impl Freeze for SessionsParams
impl RefUnwindSafe for SessionsParams
impl Send for SessionsParams
impl Sync for SessionsParams
impl Unpin for SessionsParams
impl UnsafeUnpin for SessionsParams
impl UnwindSafe for SessionsParams
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