android_looper/
error.rs

1//! Looper Error and Result.
2//!
3//!
4
5use std::result;
6
7#[derive(Copy, Clone, Debug)]
8pub enum Error {
9    PrepareLooperFailed,
10}
11
12pub type Result<T> = result::Result<T, Error>;