> 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.

# Enum Editor Field Kind

> Editor control shape for one configuration field.

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

```rust
pub enum EditorFieldKind {
    Boolean,
    String,
    Integer,
    Float,
    Enum,
    StringMap,
    Json,
    Section,
}
```

Editor control shape for one configuration field.

## Variants

### `Boolean`

<pre />

Boolean toggle.

### `String`

<pre />

String-like value, including paths.

### `Integer`

<pre />

Integer value.

### `Float`

<pre />

Floating-point number value.

### `Enum`

<pre />

String enum with a fixed set of allowed values.

### `StringMap`

<pre />

Object with string keys and string values.

### `Json`

<pre />

Arbitrary JSON value.

### `Section`

<pre />

Nested configuration section.

## Trait Implementations

### `impl Clone for EditorFieldKind`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for EditorFieldKind`

<pre />

#### `fmt`

<pre />

### `impl PartialEq for EditorFieldKind`

<pre />

#### `eq`

<pre />

#### `ne`

<pre />

### `impl Copy for EditorFieldKind`

<pre />

### `impl Eq for EditorFieldKind`

<pre />

### `impl StructuralPartialEq for EditorFieldKind`

<pre />