{% extends "base.html" %} {% block title %}Items — Rust Analyzer{% endblock %} {% block topbar_title %}Code Items{% endblock %} {% block content %}
All Items ({{ total }})
{% if kind_filter or name_filter or file_filter %} Clear {% endif %}
{% for row in items %} {% endfor %} {% if not items %} {% endif %}
ID Kind Name Visibility Target Signature CC Location
{{ row.id }} {{ row.kind }} {{ row.name }} {{ row.visibility or '' }} {{ row.target or '' }} {{ row.signature or '' }} {{ row.cyclomatic_complexity or '' }} {{ row.file_path }}:{{ row.start_line }}
No items found
{% if total_pages > 1 %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %}