1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Looper Error and Result.
//!
//!

use std::result;

#[derive(Copy, Clone, Debug)]
pub enum Error {
    PrepareLooperFailed,
}

pub type Result<T> = result::Result<T, Error>;