mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
&Option<T>
-> Option<&T>
(#11091)
* refactor `starting_request_args` to only `ref` non-`Copy` * refactor `needs_recompile` to only `ref` non-`Copy` * refactor `add_workspace_folder` to only `ref` `Some` --------- Co-authored-by: Rudxain <rudxain@localhost.localdomain>
This commit is contained in:
parent
0c8d51ee36
commit
6997ee9151
3 changed files with 11 additions and 8 deletions
|
@ -157,8 +157,8 @@ impl Client {
|
|||
)
|
||||
}
|
||||
|
||||
pub fn starting_request_args(&self) -> &Option<Value> {
|
||||
&self.starting_request_args
|
||||
pub fn starting_request_args(&self) -> Option<&Value> {
|
||||
self.starting_request_args.as_ref()
|
||||
}
|
||||
|
||||
pub async fn tcp_process(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue