1 2 3 4 5 6 7
use std::borrow::Cow; use std::result; use crate::error::Error; pub(crate) type CatMap = crate::io_cat::CatMap<Cow<'static, str>>; pub type Result<A> = result::Result<A, Error>;