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