From 66ee40e4c7a9ab36b8cd42e82457a99966c3f696 Mon Sep 17 00:00:00 2001 From: Osspial Date: Wed, 9 Aug 2017 23:47:35 -0400 Subject: [PATCH] Re-export num_traits::Bounded --- src/structure.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structure.rs b/src/structure.rs index 6c36cc0..ac656a7 100644 --- a/src/structure.rs +++ b/src/structure.rs @@ -25,7 +25,7 @@ use approx::ApproxEq; use angle::Rad; use num::{BaseNum, BaseFloat}; -pub use num_traits::{One, Zero}; +pub use num_traits::{One, Zero, Bounded}; /// An array containing elements of type `Element` pub trait Array where