devela/sys/mem/alloc/
reexports.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// devela::sys::mem::alloc::reexports
//
//! Reexported allocation-related items.
//

use crate::reexport;

/* alloc */

reexport! { rust: alloc::alloc,
    doc: "Layout of a block of memory.",
    Layout
}
reexport! { rust: alloc::alloc,
    doc: "The parameters given to a `Layout` constructor did not satisfy the constraints.",
    LayoutError
}
reexport! { rust: alloc::alloc,
    doc: "",
    GlobalAlloc
}