fixrs 0.1.5

Blazing-fast CLI to replace Rust qualified paths with use statements, auto-fixing clippy::absolute_paths
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::{io, result};

use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
  #[error(transparent)]
  Io(#[from] io::Error),

  #[error(transparent)]
  Syn(#[from] syn::Error),

  #[error(transparent)]
  Ignore(#[from] ignore::Error),
}

pub type Result<T> = result::Result<T, Error>;