Remove questionable Ord derives
This commit is contained in:
parent
dc7ad26ac1
commit
542ee159a4
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
use std::fmt;
|
||||
|
||||
#[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd, Hash)]
|
||||
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
|
||||
pub struct Mailbox {
|
||||
pub flags: String,
|
||||
pub exists: u32,
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
use std::io::{Error, ErrorKind, Read, Result, Write};
|
||||
use std::cmp::min;
|
||||
|
||||
#[derive(Clone, Debug, Eq, Ord, PartialEq, PartialOrd, Hash)]
|
||||
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
|
||||
pub struct MockStream {
|
||||
read_buf: Vec<u8>,
|
||||
read_pos: usize,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue