pub type Result<T, E = DsntkError> = Result<T, E>;
Expand description
Common result type.
Aliased Type§
pub enum Result<T, E = DsntkError> {
Ok(T),
Err(E),
}
pub type Result<T, E = DsntkError> = Result<T, E>;
Common result type.
pub enum Result<T, E = DsntkError> {
Ok(T),
Err(E),
}