copyrite 0.4.0

A CLI tool for efficient checksum and copy operations across object stores
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::{io, result};
use thiserror::Error;

/// The result type for the test module.
pub type Result<T> = result::Result<T, Error>;

/// Error types for the test module.
#[derive(Error, Debug)]
pub enum Error {
    #[error("error generating file: {0}")]
    FileGenerate(String),
    #[error("io error: {0}")]
    IoError(#[from] io::Error),
}