Diffstat (limited to 'src/walk/walkers.rs')
| -rw-r--r-- | src/walk/walkers.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/walk/walkers.rs b/src/walk/walkers.rs new file mode 100644 index 0000000..b4dd2cd --- /dev/null +++ b/src/walk/walkers.rs @@ -0,0 +1,11 @@ +use crate::protocol::ProtocolId; + +mod owned; +mod owned_clone; + +pub use owned::*; +pub use owned_clone::*; + +#[derive(thiserror::Error, Debug)] +#[error("The visitor is missing protocol: {0}")] +pub struct MissingProtocol(pub ProtocolId); |