{% extends "base.html" %} {% block title %}Complexity — Rust Analyzer{% endblock %} {% block topbar_title %}Complexity Report{% endblock %} {% block content %}
Functions Above Threshold
{{ rows|length }}
Max Cyclomatic
{{ max_cc }}
Max Cognitive
{{ max_cog }}
Functions with Complexity >= {{ min_cx }}
{% for row in rows %} {% endfor %} {% if not rows %} {% endif %}
Function Kind Cyclomatic Cognitive Nesting Branches Calls LOC Location
{{ row.name }} {{ row.kind }} {{ row.cyclomatic_complexity }} {{ row.cognitive_complexity }} {{ row.nesting_depth }} {{ row.num_branches }} {{ row.num_function_calls }} {{ row.lines_of_code }} {{ row.file_path }}:{{ row.start_line }}
No functions above threshold
{% endblock %} {% block scripts %} {% endblock %}