pub type LighthouseResult<T> = Result<T, LighthouseError>;
Expand description
Result type used throughout the lighthouse library
Aliased Type§
enum LighthouseResult<T> {
Ok(T),
Err(LighthouseError),
}
pub type LighthouseResult<T> = Result<T, LighthouseError>;
Result type used throughout the lighthouse library
enum LighthouseResult<T> {
Ok(T),
Err(LighthouseError),
}