From 39c5f26135e58427649a4daf0cc6eb18deef6ebc Mon Sep 17 00:00:00 2001 From: Arthur LE MOIGNE Date: Mon, 15 Jan 2024 10:55:36 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Impl=20AsFixValue=20for=20floating?= =?UTF-8?q?=20point=20number?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- quickfix/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quickfix/src/lib.rs b/quickfix/src/lib.rs index 794a038..aac0fb9 100644 --- a/quickfix/src/lib.rs +++ b/quickfix/src/lib.rs @@ -181,6 +181,8 @@ impl_as_fix_value!(i16); impl_as_fix_value!(i32); impl_as_fix_value!(i64); impl_as_fix_value!(isize); +impl_as_fix_value!(f32); +impl_as_fix_value!(f64); /// Stores and organizes a collection of Fields. ///