pub type Result<T> = Result<T, ConfigTreeError>;Expand description
Result type used by the lower-level tree API.
The error type is ConfigTreeError.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ConfigTreeError),
}pub type Result<T> = Result<T, ConfigTreeError>;Result type used by the lower-level tree API.
The error type is ConfigTreeError.
pub enum Result<T> {
Ok(T),
Err(ConfigTreeError),
}