pub type LycheeResult<T> = Result<T>;Expand description
The lychee Result type, aliased to avoid conflicting with std::result::Result.
Aliased Type§
pub enum LycheeResult<T> {
Ok(T),
Err(ErrorKind),
}pub type LycheeResult<T> = Result<T>;The lychee Result type, aliased to avoid conflicting with std::result::Result.
pub enum LycheeResult<T> {
Ok(T),
Err(ErrorKind),
}