|
@@ -1,9 +1,12 @@
|
|
|
+#![doc = include_str!("../../README.md")]
|
|
|
+
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
|
|
pub use rustructure_macros::Walkable;
|
|
|
|
|
|
mod impls;
|
|
|
|
|
|
+/// For `Walker::visit_integer`, the type of integer encountered.
|
|
|
#[allow(non_camel_case_types)]
|
|
|
pub enum IntegerType {
|
|
|
u8,
|
|
@@ -17,6 +20,10 @@ pub enum IntegerType {
|
|
|
usize,
|
|
|
}
|
|
|
|
|
|
+/// User-facing type.
|
|
|
+///
|
|
|
+/// In the non-leaf functions (those that take a `Walkable` generic), if recursion
|
|
|
+/// should take place, it can be invoked at a place of your choosing via `W::walk_with(self)`.
|
|
|
pub trait Walker {
|
|
|
fn visit_unit(&mut self);
|
|
|
fn visit_integer(&mut self, itype: IntegerType);
|