pub struct ListSessionsOptions {
pub limit: Option<i32>,
pub offset: Option<i32>,
pub cursor: Option<String>,
pub customer_id: Option<String>,
}Expand description
Options for listing sessions.
Fields§
§limit: Option<i32>Maximum number of sessions to return (default: 50, max: 100).
offset: Option<i32>Number of sessions to skip (for pagination).
cursor: Option<String>Pagination cursor from a previous response’s next_cursor field.
customer_id: Option<String>Filter sessions by customer ID.
Trait Implementations§
Source§impl Clone for ListSessionsOptions
impl Clone for ListSessionsOptions
Source§fn clone(&self) -> ListSessionsOptions
fn clone(&self) -> ListSessionsOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 ListSessionsOptions
impl Debug for ListSessionsOptions
Source§impl Default for ListSessionsOptions
impl Default for ListSessionsOptions
Source§fn default() -> ListSessionsOptions
fn default() -> ListSessionsOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListSessionsOptions
impl RefUnwindSafe for ListSessionsOptions
impl Send for ListSessionsOptions
impl Sync for ListSessionsOptions
impl Unpin for ListSessionsOptions
impl UnwindSafe for ListSessionsOptions
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