mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
format
This commit is contained in:
parent
d4c215b35d
commit
809990a3a4
1 changed files with 10 additions and 4 deletions
|
@ -595,7 +595,8 @@ impl Client {
|
||||||
|
|
||||||
let response = self
|
let response = self
|
||||||
.request("stackTrace".to_owned(), to_value(args).ok(), true)
|
.request("stackTrace".to_owned(), to_value(args).ok(), true)
|
||||||
.await?.unwrap();
|
.await?
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let body: StackTraceResponseBody = from_value(response.body.unwrap()).unwrap();
|
let body: StackTraceResponseBody = from_value(response.body.unwrap()).unwrap();
|
||||||
|
|
||||||
|
@ -603,7 +604,10 @@ impl Client {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn threads(&mut self) -> Result<Vec<Thread>> {
|
pub async fn threads(&mut self) -> Result<Vec<Thread>> {
|
||||||
let response = self.request("threads".to_owned(), None, true).await?.unwrap();
|
let response = self
|
||||||
|
.request("threads".to_owned(), None, true)
|
||||||
|
.await?
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let body: ThreadsResponseBody = from_value(response.body.unwrap()).unwrap();
|
let body: ThreadsResponseBody = from_value(response.body.unwrap()).unwrap();
|
||||||
|
|
||||||
|
@ -615,7 +619,8 @@ impl Client {
|
||||||
|
|
||||||
let response = self
|
let response = self
|
||||||
.request("scopes".to_owned(), to_value(args).ok(), true)
|
.request("scopes".to_owned(), to_value(args).ok(), true)
|
||||||
.await?.unwrap();
|
.await?
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let body: ScopesResponseBody = from_value(response.body.unwrap()).unwrap();
|
let body: ScopesResponseBody = from_value(response.body.unwrap()).unwrap();
|
||||||
|
|
||||||
|
@ -633,7 +638,8 @@ impl Client {
|
||||||
|
|
||||||
let response = self
|
let response = self
|
||||||
.request("variables".to_owned(), to_value(args).ok(), true)
|
.request("variables".to_owned(), to_value(args).ok(), true)
|
||||||
.await?.unwrap();
|
.await?
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let body: VariablesResponseBody = from_value(response.body.unwrap()).unwrap();
|
let body: VariablesResponseBody = from_value(response.body.unwrap()).unwrap();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue