pub struct AgentRunPage {
pub runs: Vec<AgentRunView>,
pub next_page_token: Option<String>,
}Expand description
Page of compact runs.
Fields§
§runs: Vec<AgentRunView>Results.
next_page_token: Option<String>Opaque continuation token.
Trait Implementations§
Source§impl Clone for AgentRunPage
impl Clone for AgentRunPage
Source§fn clone(&self) -> AgentRunPage
fn clone(&self) -> AgentRunPage
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 AgentRunPage
impl Debug for AgentRunPage
Source§impl Default for AgentRunPage
impl Default for AgentRunPage
Source§fn default() -> AgentRunPage
fn default() -> AgentRunPage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentRunPage
impl<'de> Deserialize<'de> for AgentRunPage
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 AgentRunPage
Source§impl PartialEq for AgentRunPage
impl PartialEq for AgentRunPage
Source§impl Serialize for AgentRunPage
impl Serialize for AgentRunPage
impl StructuralPartialEq for AgentRunPage
Auto Trait Implementations§
impl Freeze for AgentRunPage
impl RefUnwindSafe for AgentRunPage
impl Send for AgentRunPage
impl Sync for AgentRunPage
impl Unpin for AgentRunPage
impl UnsafeUnpin for AgentRunPage
impl UnwindSafe for AgentRunPage
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