summaryrefslogtreecommitdiffstats
path: root/src/librustdoc/html/templates/type_layout_size.html
blob: 9c2b39edc9f37fcc46ed6070c2403beff6880388 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% if is_unsized %}
  (unsized)
{% else %}
  {% if size == 1 %}
    1 byte
  {% else %}
    {{ size +}} bytes
  {% endif %}
  {% if is_uninhabited %}
    {# +#} (<a href="https://doc.rust-lang.org/stable/reference/glossary.html#uninhabited">uninhabited</a>)
  {% endif %}
{% endif %}