forked from M-Labs/libfringe
Add #[derive(Debug)] for SliceStack and OwnedStack.
This commit is contained in:
parent
5a77a01863
commit
e02ef03304
|
@ -7,6 +7,7 @@ use self::alloc::raw_vec::RawVec;
|
||||||
use self::alloc::boxed::Box;
|
use self::alloc::boxed::Box;
|
||||||
|
|
||||||
/// OwnedStack allocates on heap and owns a non-guarded stack.
|
/// OwnedStack allocates on heap and owns a non-guarded stack.
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct OwnedStack(Box<[u8]>);
|
pub struct OwnedStack(Box<[u8]>);
|
||||||
|
|
||||||
impl OwnedStack {
|
impl OwnedStack {
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
/// SliceStack holds a non-guarded stack allocated elsewhere and provided as a mutable
|
/// SliceStack holds a non-guarded stack allocated elsewhere and provided as a mutable
|
||||||
/// slice.
|
/// slice.
|
||||||
|
#[derive(Debug)]
|
||||||
pub struct SliceStack<'a>(pub &'a mut [u8]);
|
pub struct SliceStack<'a>(pub &'a mut [u8]);
|
||||||
|
|
||||||
impl<'a> ::stack::Stack for SliceStack<'a> {
|
impl<'a> ::stack::Stack for SliceStack<'a> {
|
||||||
|
|
Loading…
Reference in New Issue