About
Contact
QtCreator
KDevelop
Solarized
1
use
core
::
alloc
;
2
3
use
super
::*;
4
5
impl
Format
for
alloc
::
Layout
{
6
fn
format
(&self,
fmt
:
Formatter
) {
7
crate
::write!(
8
fmt,
9
"Layout {{ size: {}, align: {} }}"
,
10
self
.size(),
11
self
.align()
12
);
13
}
14
}
15