Skip to content

Commit

Permalink
reexports
Browse files Browse the repository at this point in the history
  • Loading branch information
meadowsys committed Jul 28, 2024
1 parent 5ddbce1 commit 4223138
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/serialiser_binary/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ mod option;
mod number;
mod string;

pub use self::error::{ Error, Result };

pub use self::array::SliceSerialiser;
pub use self::bool::BoolSerialiser;
pub use self::option::OptionSerialiser;
pub use self::number::{
U8Serialiser,
U16Serialiser,
Expand All @@ -35,7 +39,7 @@ pub use self::number::{
I128Serialiser,
ISizeSerialiser
};
pub use self::error::{ Error, Result };
pub use self::string::StrSerialiser;

#[inline]
pub fn serialise<T>(item: &T) -> Vec<u8>
Expand Down

0 comments on commit 4223138

Please sign in to comment.