pub struct AgentSessionListQuery {
pub status: Option<SessionStatus>,
pub profile: Option<String>,
pub workspace: Option<String>,
pub limit: u32,
pub page_token: Option<String>,
}Expand description
Compact query for canonical session listing.
Fields§
§status: Option<SessionStatus>Optional exact status.
profile: Option<String>Optional exact profile.
workspace: Option<String>Optional exact workspace display value.
limit: u32Maximum page size.
page_token: Option<String>Opaque keyset token.
Trait Implementations§
Source§impl Clone for AgentSessionListQuery
impl Clone for AgentSessionListQuery
Source§fn clone(&self) -> AgentSessionListQuery
fn clone(&self) -> AgentSessionListQuery
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 AgentSessionListQuery
impl Debug for AgentSessionListQuery
Source§impl Default for AgentSessionListQuery
impl Default for AgentSessionListQuery
Source§fn default() -> AgentSessionListQuery
fn default() -> AgentSessionListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentSessionListQuery
impl<'de> Deserialize<'de> for AgentSessionListQuery
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
impl Eq for AgentSessionListQuery
Source§impl PartialEq for AgentSessionListQuery
impl PartialEq for AgentSessionListQuery
Source§impl Serialize for AgentSessionListQuery
impl Serialize for AgentSessionListQuery
impl StructuralPartialEq for AgentSessionListQuery
Auto Trait Implementations§
impl Freeze for AgentSessionListQuery
impl RefUnwindSafe for AgentSessionListQuery
impl Send for AgentSessionListQuery
impl Sync for AgentSessionListQuery
impl Unpin for AgentSessionListQuery
impl UnsafeUnpin for AgentSessionListQuery
impl UnwindSafe for AgentSessionListQuery
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