rlua-searcher/src/types.rs

4 lines
78 B
Rust
Raw Normal View History

use crate::error::Error;
pub type Result<A> = std::result::Result<A, Error>;