runar_serializer/primitive_types.rs
1// Type aliases for primitive serialization
2// These are now simple aliases since we use serde_cbor directly
3
4/// Type alias for String values (no longer needs wrapper)
5pub type StringValue = String;
6
7/// Type alias for i64 values (no longer needs wrapper)
8pub type Int64Value = i64;
9
10/// Type alias for u64 values (no longer needs wrapper)
11pub type Uint64Value = u64;
12
13/// Type alias for i32 values (no longer needs wrapper)
14pub type Int32Value = i32;
15
16/// Type alias for u32 values (no longer needs wrapper)
17pub type Uint32Value = u32;
18
19/// Type alias for f64 values (no longer needs wrapper)
20pub type DoubleValue = f64;
21
22/// Type alias for f32 values (no longer needs wrapper)
23pub type FloatValue = f32;
24
25/// Type alias for bool values (no longer needs wrapper)
26pub type BoolValue = bool;
27
28/// Type alias for char values (no longer needs wrapper)
29pub type CharValue = char;