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

# Enum Adapter Kind

> Adapter implementation kind.

Generated from `cargo doc --no-deps -p nemo-fabric-core`.

```rust
pub enum AdapterKind {
    Process,
    Http,
    Python,
    NativePlugin,
}
```

Adapter implementation kind.

## Variants

### `Process`

<pre />

Launch and supervise a persistent adapter process.

### `Http`

<pre />

Connect to a service or HTTP-backed harness.

### `Python`

<pre />

Launch and supervise a persistent Python adapter host.

### `NativePlugin`

<pre />

Delegate to a harness-native plugin package.

## Trait Implementations

### `impl Clone for AdapterKind`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for AdapterKind`

<pre />

#### `fmt`

<pre />

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

<pre />

#### `deserialize`

<pre />

### `impl JsonSchema for AdapterKind`

<pre />

#### `schema_name`

<pre />

#### `schema_id`

<pre />

#### `json_schema`

<pre />

#### `inline_schema`

<pre />

### `impl PartialEq for AdapterKind`

<pre />

#### `eq`

<pre />

#### `ne`

<pre />

### `impl Serialize for AdapterKind`

<pre />

#### `serialize`

<pre />

### `impl Copy for AdapterKind`

<pre />

### `impl Eq for AdapterKind`

<pre />

### `impl StructuralPartialEq for AdapterKind`

<pre />