Type Alias paperclip::PaperClipResult

source ·
pub type PaperClipResult<T> = Result<T, PaperClipError>;
Expand description

Generic result used throughout this library.

Aliased Type§

enum PaperClipResult<T> {
    Ok(T),
    Err(PaperClipError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PaperClipError)

Contains the error value