pub struct SessionQuery {
pub limit: Option<usize>,
pub offset: Option<usize>,
pub labels: Option<BTreeMap<String, String>>,
}Expand description
Query parameters for listing sessions.
Fields§
§limit: Option<usize>Maximum number of results.
offset: Option<usize>Offset for pagination.
labels: Option<BTreeMap<String, String>>Filters sessions where all specified k/v pairs match.
Trait Implementations§
Source§impl Debug for SessionQuery
impl Debug for SessionQuery
Source§impl Default for SessionQuery
impl Default for SessionQuery
Source§fn default() -> SessionQuery
fn default() -> SessionQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SessionQuery
impl RefUnwindSafe for SessionQuery
impl Send for SessionQuery
impl Sync for SessionQuery
impl Unpin for SessionQuery
impl UnsafeUnpin for SessionQuery
impl UnwindSafe for SessionQuery
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