> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo/relay/llms.txt.
> For full documentation content, see https://docs.nvidia.com/nemo/relay/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo/relay/_mcp/server.

# Struct Prediction Trie Node

> A node in the prediction trie representing a function in the call hierarchy.

Generated from `cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi`.

<pre />

A node in the prediction trie representing a function in the call hierarchy.

## Fields

### `name: String`

Function name at this level in the hierarchy.

### `children: HashMap<String, PredictionTrieNode>`

Child nodes keyed by function name.

### `predictions_by_call_index: HashMap<u32, LlmCallPrediction>`

Predictions keyed by call index (1-indexed).

### `predictions_any_index: Option<LlmCallPrediction>`

Fallback predictions aggregated across all call indices.

## Implementations

### `impl PredictionTrieNode`

<pre />

#### `new`

<pre />

Creates a new leaf node with the given name and no children or predictions.

## Trait Implementations

### `impl Clone for PredictionTrieNode`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for PredictionTrieNode`

<pre />

#### `fmt`

<pre />

### `impl<'de> Deserialize<'de> for PredictionTrieNode`

<pre />

#### `deserialize`

<pre />

### `impl Serialize for PredictionTrieNode`

<pre />

#### `serialize`

<pre />