s3find 0.7.2

A command line utility to walk an Amazon S3 hierarchy. s3find is an analog of find for Amazon S3.
Documentation
use thiserror::Error;

#[derive(Error, Debug)]
pub enum FunctionError {
    #[error("Invalid command line value")]
    CommandlineParse,
    #[error("Invalid path value")]
    ParentPathParse,
    #[error("Cannot parse filename")]
    FileNameParseError,
    #[error("Cannot convert path to string")]
    PathConverError,
    #[error("Cannot fetch body from s3 response")]
    S3FetchBodyError,
    #[error("File is already present")]
    PresentFileError,
    #[error("S3 Object is not complete")]
    ObjectFieldError,
}