pub struct AgentStreamResponse {
pub frames: Vec<AgentStreamFrame>,
pub cursor: u64,
pub snapshot: String,
pub dropped: bool,
}Fields§
§frames: Vec<AgentStreamFrame>§cursor: u64§snapshot: String§dropped: boolTrait Implementations§
Source§impl Clone for AgentStreamResponse
impl Clone for AgentStreamResponse
Source§fn clone(&self) -> AgentStreamResponse
fn clone(&self) -> AgentStreamResponse
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 AgentStreamResponse
impl Debug for AgentStreamResponse
Source§impl<'de> Deserialize<'de> for AgentStreamResponse
impl<'de> Deserialize<'de> for AgentStreamResponse
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
Auto Trait Implementations§
impl Freeze for AgentStreamResponse
impl RefUnwindSafe for AgentStreamResponse
impl Send for AgentStreamResponse
impl Sync for AgentStreamResponse
impl Unpin for AgentStreamResponse
impl UnsafeUnpin for AgentStreamResponse
impl UnwindSafe for AgentStreamResponse
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