pub struct RealtimeSessionCreateRequest_Tools {
pub type: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub parameters: Option<RealtimeSessionCreateRequest_Tools_Parameters>,
}
Fields§
§type: Option<String>
The type of the tool, i.e.
name: Option<String>
The name of the function.
description: Option<String>
The description of the function, including guidance on when and how to call it, and guidance about what to tell the user when calling (if anything).
parameters: Option<RealtimeSessionCreateRequest_Tools_Parameters>
Parameters of the function in JSON Schema.
Trait Implementations§
Source§impl Clone for RealtimeSessionCreateRequest_Tools
impl Clone for RealtimeSessionCreateRequest_Tools
Source§fn clone(&self) -> RealtimeSessionCreateRequest_Tools
fn clone(&self) -> RealtimeSessionCreateRequest_Tools
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for RealtimeSessionCreateRequest_Tools
impl Default for RealtimeSessionCreateRequest_Tools
Source§fn default() -> RealtimeSessionCreateRequest_Tools
fn default() -> RealtimeSessionCreateRequest_Tools
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RealtimeSessionCreateRequest_Tools
impl RefUnwindSafe for RealtimeSessionCreateRequest_Tools
impl Send for RealtimeSessionCreateRequest_Tools
impl Sync for RealtimeSessionCreateRequest_Tools
impl Unpin for RealtimeSessionCreateRequest_Tools
impl UnwindSafe for RealtimeSessionCreateRequest_Tools
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