pub struct ListSessionsParams {
pub agent_id: Option<String>,
pub limit: Option<i64>,
pub cursor: Option<String>,
}Expand description
Query and header parameters for listSessions.
Fields§
§agent_id: Option<String>Filter by agent ID
limit: Option<i64>§cursor: Option<String>Opaque pagination cursor returned by previous page response.
Trait Implementations§
Source§impl Clone for ListSessionsParams
impl Clone for ListSessionsParams
Source§fn clone(&self) -> ListSessionsParams
fn clone(&self) -> ListSessionsParams
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 ListSessionsParams
impl Debug for ListSessionsParams
Source§impl Default for ListSessionsParams
impl Default for ListSessionsParams
Source§fn default() -> ListSessionsParams
fn default() -> ListSessionsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListSessionsParams
impl<'de> Deserialize<'de> for ListSessionsParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListSessionsParams
impl PartialEq for ListSessionsParams
Source§impl Serialize for ListSessionsParams
impl Serialize for ListSessionsParams
impl StructuralPartialEq for ListSessionsParams
Auto Trait Implementations§
impl Freeze for ListSessionsParams
impl RefUnwindSafe for ListSessionsParams
impl Send for ListSessionsParams
impl Sync for ListSessionsParams
impl Unpin for ListSessionsParams
impl UnsafeUnpin for ListSessionsParams
impl UnwindSafe for ListSessionsParams
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