Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ use std::cmp::Ordering;
use std::fmt;
use std::i32;
use std::i64;
use std::marker::MarkerTrait;
use std::marker::PhantomData;

use time::Timespec;
Expand Down Expand Up @@ -152,7 +151,7 @@ impl Normalizable for Timespec {
}

/// The possible sides of a bound
#[derive(PartialEq, Eq, Copy)]
#[derive(PartialEq, Eq, Clone, Copy)]
pub enum BoundSide {
/// An upper bound
Upper,
Expand All @@ -162,7 +161,7 @@ pub enum BoundSide {

/// A trait implemented by phantom types indicating the type of the bound
#[doc(hidden)]
pub trait BoundSided: MarkerTrait {
pub trait BoundSided {
/// Returns the bound side this type corresponds to
fn side() -> BoundSide;
}
Expand Down