File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ impl WebsocketBuilder<'_> {
330
330
}
331
331
}
332
332
333
- impl < ' a > WebsocketBuilder < ' a > {
333
+ impl WebsocketBuilder < ' _ > {
334
334
pub async fn file (
335
335
self ,
336
336
filename : impl AsRef < Path > ,
@@ -649,8 +649,8 @@ pub struct WebsocketHandle {
649
649
request_id : Uuid ,
650
650
}
651
651
652
- impl < ' a > WebsocketHandle {
653
- async fn new ( builder : WebsocketBuilder < ' a > ) -> Result < WebsocketHandle > {
652
+ impl WebsocketHandle {
653
+ async fn new ( builder : WebsocketBuilder < ' _ > ) -> Result < WebsocketHandle > {
654
654
let url = builder. as_url ( ) ?;
655
655
let host = url. host_str ( ) . ok_or ( DeepgramError :: InvalidUrl ) ?;
656
656
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ use super::options::{Options, SerializableOptions};
14
14
15
15
static DEEPGRAM_API_URL_SPEAK : & str = "v1/speak" ;
16
16
17
- impl < ' a > Speak < ' a > {
17
+ impl Speak < ' _ > {
18
18
/// Sends a request to Deepgram to transcribe pre-recorded audio.
19
19
pub async fn speak_to_file (
20
20
& self ,
You can’t perform that action at this time.
0 commit comments