sorbus 0.13.0

A tree manipulation library
Documentation
1
2
3
4
5
6
7
8
9
use thiserror::Error;

use crate::NodeHandle;

#[derive(Error, Debug)]
pub enum Error {
    #[error("node {0} not found")]
    NodeNotFound(NodeHandle),
}