pub struct CreateSessionResponse {
pub session_id: Uuid,
pub declared_intent: String,
pub authorized_tools: Vec<String>,
pub authorized_credentials: Vec<String>,
pub call_budget: u64,
pub time_limit_secs: i64,
}Expand description
Response body for POST /sessions.
Fields§
§session_id: Uuid§declared_intent: String§call_budget: u64§time_limit_secs: i64Trait Implementations§
Source§impl Debug for CreateSessionResponse
impl Debug for CreateSessionResponse
Auto Trait Implementations§
impl Freeze for CreateSessionResponse
impl RefUnwindSafe for CreateSessionResponse
impl Send for CreateSessionResponse
impl Sync for CreateSessionResponse
impl Unpin for CreateSessionResponse
impl UnsafeUnpin for CreateSessionResponse
impl UnwindSafe for CreateSessionResponse
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