File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ use std::cmp::Ordering;
1010use std:: fmt;
1111use std:: i32;
1212use std:: i64;
13- use std:: marker:: MarkerTrait ;
1413use std:: marker:: PhantomData ;
1514
1615use time:: Timespec ;
@@ -152,7 +151,7 @@ impl Normalizable for Timespec {
152151}
153152
154153/// The possible sides of a bound
155- #[ derive( PartialEq , Eq , Copy ) ]
154+ #[ derive( PartialEq , Eq , Clone , Copy ) ]
156155pub enum BoundSide {
157156 /// An upper bound
158157 Upper ,
@@ -162,7 +161,7 @@ pub enum BoundSide {
162161
163162/// A trait implemented by phantom types indicating the type of the bound
164163#[ doc( hidden) ]
165- pub trait BoundSided : MarkerTrait {
164+ pub trait BoundSided {
166165 /// Returns the bound side this type corresponds to
167166 fn side ( ) -> BoundSide ;
168167}
You can’t perform that action at this time.
0 commit comments