summaryrefslogtreecommitdiff
path: root/bzipper_macros/src/impls/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bzipper_macros/src/impls/mod.rs')
-rw-r--r--bzipper_macros/src/impls/mod.rs18
1 files changed, 10 insertions, 8 deletions
diff --git a/bzipper_macros/src/impls/mod.rs b/bzipper_macros/src/impls/mod.rs
index d61cf90..cdbc9ac 100644
--- a/bzipper_macros/src/impls/mod.rs
+++ b/bzipper_macros/src/impls/mod.rs
@@ -1,26 +1,28 @@
// Copyright 2024 Gabriel Bjørnager Jensen.
//
-// This file is part of bzipper.
+// This file is part of bZipper.
//
-// bzipper is free software: you can redistribute
+// bZipper is free software: you can redistribute
// it and/or modify it under the terms of the GNU
// Lesser General Public License as published by
// the Free Software Foundation, either version 3
// of the License, or (at your option) any later
// version.
//
-// bzipper is distributed in the hope that it will
+// bZipper is distributed in the hope that it will
// be useful, but WITHOUT ANY WARRANTY; without
// even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Less-
-// er General Public License along with bzipper. If
+// er General Public License along with bZipper. If
// not, see <https://www.gnu.org/licenses/>.
use crate::use_mod;
-use_mod!(pub deserialise_enum);
-use_mod!(pub deserialise_struct);
-use_mod!(pub serialise_enum);
-use_mod!(pub serialise_struct);
+use_mod!(pub decode_enum);
+use_mod!(pub decode_struct);
+use_mod!(pub encode_enum);
+use_mod!(pub encode_struct);
+use_mod!(pub sized_encode_enum);
+use_mod!(pub sized_encode_struct);