pub struct ActiveCall {
pub stream_sid: String,
pub response_tx: Sender<Message>,
pub speaking: Arc<AtomicBool>,
}Expand description
A registered active call with handles to inject audio.
Fields§
§stream_sid: String§response_tx: Sender<Message>§speaking: Arc<AtomicBool>Auto Trait Implementations§
impl Freeze for ActiveCall
impl RefUnwindSafe for ActiveCall
impl Send for ActiveCall
impl Sync for ActiveCall
impl Unpin for ActiveCall
impl UnsafeUnpin for ActiveCall
impl UnwindSafe for ActiveCall
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