This commit is contained in:
Laurence Tratt 2018-02-17 17:57:47 +00:00 committed by GitHub
commit a7f6a0807d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
use core::ops::{Not, BitAnd, BitOr, BitXor, Shl, Shr};
use core::fmt::{Debug, Display};
use {Num, NumCast};
use bounds::Bounded;
@ -8,6 +9,8 @@ use ops::saturating::Saturating;
pub trait PrimInt
: Sized
+ Copy
+ Display
+ Debug
+ Num + NumCast
+ Bounded
+ PartialOrd + Ord + Eq