pub type NodeResult<'tree, T> = Result<T, IncorrectKind<'tree>>;Expand description
Result of attempting to wrap a node
Aliased Type§
pub enum NodeResult<'tree, T> {
Ok(T),
Err(IncorrectKind<'tree>),
}pub type NodeResult<'tree, T> = Result<T, IncorrectKind<'tree>>;Result of attempting to wrap a node
pub enum NodeResult<'tree, T> {
Ok(T),
Err(IncorrectKind<'tree>),
}