mirror of
https://github.com/denoland/deno.git
synced 2025-07-24 13:44:08 +00:00
refactor: remove redundant qualification of symbols in Rust (#15201)
This commit is contained in:
parent
1a7259b04b
commit
dbf5e95b59
8 changed files with 28 additions and 33 deletions
|
@ -38,7 +38,6 @@ use deno_graph::ModuleKind;
|
|||
use deno_graph::ResolutionError;
|
||||
use std::collections::HashSet;
|
||||
use std::fmt;
|
||||
use std::result;
|
||||
use std::sync::Arc;
|
||||
use std::time::Instant;
|
||||
|
||||
|
@ -47,7 +46,7 @@ use std::time::Instant;
|
|||
pub struct Stats(pub Vec<(String, u32)>);
|
||||
|
||||
impl<'de> Deserialize<'de> for Stats {
|
||||
fn deserialize<D>(deserializer: D) -> result::Result<Self, D::Error>
|
||||
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
||||
where
|
||||
D: Deserializer<'de>,
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue