muscat 0.3.0

Multithreaded Side Channel Attacks Tool
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("Failed to save/load muscat data")]
    SaveLoadError(#[from] serde_json::Error),
    #[error(transparent)]
    IoError(#[from] io::Error),
}