File: duplicate-transparent.rs

package info (click to toggle)
clamav 1.0.9%2Bdfsg-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 262,900 kB
  • sloc: ansic: 182,912; cpp: 6,947; python: 4,133; sh: 2,679; javascript: 2,195; yacc: 1,357; asm: 1,245; lex: 716; makefile: 108; perl: 17
file content (8 lines) | stat: -rw-r--r-- 138 bytes parent folder | download | duplicates (63)
1
2
3
4
5
6
7
8
use thiserror::Error;

#[derive(Error, Debug)]
#[error(transparent)]
#[error(transparent)]
pub struct Error(anyhow::Error);

fn main() {}