start implementing visitors

This commit is contained in:
Jean-Marie Mineau 2024-07-10 17:34:51 +02:00
parent 55b4ef015b
commit c3a7762fc8
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
11 changed files with 903 additions and 2016 deletions

View file

@ -33,6 +33,7 @@ impl std::fmt::Display for Error {
Self::DeserializationError(msg) => write!(f, "{}", msg),
Self::InvalidStringEncoding(msg) => write!(f, "{}", msg),
Self::InconsistantStruct(msg) => write!(f, "{}", msg),
Self::OutOfBound(msg) => write!(f, "{}", msg),
}
}
}