diff options
author | 2024-11-20 15:10:36 +0000 | |
---|---|---|
committer | 2024-11-20 15:10:36 +0000 | |
commit | a3dc4e1475a92c011cc55a070e268036abe88b01 (patch) | |
tree | d0aa825d8dae42ca65263605f98dfc1b0e237736 /src/error.rs | |
parent | 0175a2d3651fac3337ef256c26eddee4a6ccb008 (diff) | |
download | peanuts-a3dc4e1475a92c011cc55a070e268036abe88b01.tar.gz peanuts-a3dc4e1475a92c011cc55a070e268036abe88b01.tar.bz2 peanuts-a3dc4e1475a92c011cc55a070e268036abe88b01.zip |
WIP: write start tag of element
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs index fcf43eb..69993ed 100644 --- a/src/error.rs +++ b/src/error.rs @@ -16,6 +16,7 @@ pub enum Error { MismatchedEndTag(Name, Name), NotInElement(String), ExtraData(String), + UndeclaredNamespace(String), } impl From<std::io::Error> for Error { |