pub struct ListTurnsResponse {
pub session_id: String,
pub total_turns: usize,
pub turns: Vec<TurnMetadata>,
pub next_cursor: Option<String>,
}Fields§
§session_id: String§total_turns: usize§turns: Vec<TurnMetadata>§next_cursor: Option<String>Implementations§
Trait Implementations§
Source§impl Debug for ListTurnsResponse
impl Debug for ListTurnsResponse
Auto Trait Implementations§
impl Freeze for ListTurnsResponse
impl RefUnwindSafe for ListTurnsResponse
impl Send for ListTurnsResponse
impl Sync for ListTurnsResponse
impl Unpin for ListTurnsResponse
impl UnwindSafe for ListTurnsResponse
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