derive debug for refbox and friends
This commit is contained in:
parent
5b341ea793
commit
b6615fa262
|
|
@ -1,6 +1,5 @@
|
||||||
use std::boxed::Box;
|
use std::boxed::Box;
|
||||||
use std::ops::Deref;
|
use std::ops::Deref;
|
||||||
use std::fmt;
|
|
||||||
|
|
||||||
use rustc_serialize::{Encodable, Encoder};
|
use rustc_serialize::{Encodable, Encoder};
|
||||||
use rustc_serialize::{Decodable, Decoder};
|
use rustc_serialize::{Decodable, Decoder};
|
||||||
|
|
@ -57,16 +56,19 @@ use rustc_serialize::{Decodable, Decoder};
|
||||||
///
|
///
|
||||||
/// Please don't stick RefBox inside deep data structures. It is much better
|
/// Please don't stick RefBox inside deep data structures. It is much better
|
||||||
/// suited in the outermost layer of whatever it is that you are encoding.
|
/// suited in the outermost layer of whatever it is that you are encoding.
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct RefBox<'a, T: 'a> {
|
pub struct RefBox<'a, T: 'a> {
|
||||||
inner: RefBoxInner<'a, T, Box<T>>
|
inner: RefBoxInner<'a, T, Box<T>>
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Like a RefBox, but encoding from a `str` and decoedes to a `String`.
|
/// Like a RefBox, but encoding from a `str` and decoedes to a `String`.
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct StrBox<'a> {
|
pub struct StrBox<'a> {
|
||||||
inner: RefBoxInner<'a, str, String>
|
inner: RefBoxInner<'a, str, String>
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Like a RefBox, but encodes from a `[T]` and encodes to a `Vec<T>`.
|
/// Like a RefBox, but encodes from a `[T]` and encodes to a `Vec<T>`.
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct SliceBox<'a, T: 'a> {
|
pub struct SliceBox<'a, T: 'a> {
|
||||||
inner: RefBoxInner<'a, [T], Vec<T>>
|
inner: RefBoxInner<'a, [T], Vec<T>>
|
||||||
}
|
}
|
||||||
|
|
@ -242,9 +244,3 @@ impl <'a, T> Deref for RefBox<'a, T> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl <'a, T: fmt::Debug> fmt::Debug for RefBox<'a, T> {
|
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
|
||||||
write!(fmt, "RefBox({:?})", *self)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue