Skip to content

Commit

Permalink
chore: move float file
Browse files Browse the repository at this point in the history
  • Loading branch information
tu6ge committed Sep 6, 2023
1 parent a24e277 commit 2042368
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
pub mod cmp;
mod de;
mod float;
pub mod register;
pub mod rule;
mod ser;
Expand Down
File renamed without changes.
6 changes: 4 additions & 2 deletions src/value/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ use std::collections::BTreeMap;

use crate::register::{FieldName, FieldNames, Parser};

mod float;

#[derive(Debug, PartialEq, Eq, Clone, Ord, PartialOrd)]
pub enum Value {
UInt8(u8),
Expand All @@ -12,8 +14,8 @@ pub enum Value {
Int32(i32),
UInt64(u64),
Int64(i64),
Float32(crate::float::Float32),
Float64(crate::float::Float64),
Float32(float::Float32),
Float64(float::Float64),
String(String),
Unit,
// Boolean(bool),
Expand Down

0 comments on commit 2042368

Please sign in to comment.