pub struct InputAudioBufferDtmfEventReceivedEvent {
pub event: String,
pub received_at: i64,
pub type_: String,
}Expand description
SIP Only: Returned when an DTMF event is received.
Fields§
§event: StringThe telephone keypad that was pressed by the user.
received_at: i64UTC Unix Timestamp when DTMF Event was received by server.
type_: StringThe event type, must be input_audio_buffer.dtmf_event_received.
Trait Implementations§
Source§impl Clone for InputAudioBufferDtmfEventReceivedEvent
impl Clone for InputAudioBufferDtmfEventReceivedEvent
Source§fn clone(&self) -> InputAudioBufferDtmfEventReceivedEvent
fn clone(&self) -> InputAudioBufferDtmfEventReceivedEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for InputAudioBufferDtmfEventReceivedEvent
impl<'de> Deserialize<'de> for InputAudioBufferDtmfEventReceivedEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InputAudioBufferDtmfEventReceivedEvent
impl RefUnwindSafe for InputAudioBufferDtmfEventReceivedEvent
impl Send for InputAudioBufferDtmfEventReceivedEvent
impl Sync for InputAudioBufferDtmfEventReceivedEvent
impl Unpin for InputAudioBufferDtmfEventReceivedEvent
impl UnsafeUnpin for InputAudioBufferDtmfEventReceivedEvent
impl UnwindSafe for InputAudioBufferDtmfEventReceivedEvent
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