pub struct RealtimeCallCreateResponse {
pub sdp: String,
pub location: Option<String>,
}Available on crate feature
realtime only.Expand description
Response from creating a Realtime call.
Fields§
§sdp: StringSDP answer produced by OpenAI for the peer connection.
location: Option<String>Relative URL containing the call ID for subsequent control requests. Location header value.
Trait Implementations§
Source§impl Clone for RealtimeCallCreateResponse
impl Clone for RealtimeCallCreateResponse
Source§fn clone(&self) -> RealtimeCallCreateResponse
fn clone(&self) -> RealtimeCallCreateResponse
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for RealtimeCallCreateResponse
impl RefUnwindSafe for RealtimeCallCreateResponse
impl Send for RealtimeCallCreateResponse
impl Sync for RealtimeCallCreateResponse
impl Unpin for RealtimeCallCreateResponse
impl UnwindSafe for RealtimeCallCreateResponse
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