> 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 Capability Target

> Component responsible for executing a configured capability.

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

```rust
pub enum CapabilityTarget {
    HarnessNative,
    FabricManaged,
    Unsupported,
}
```

Component responsible for executing a configured capability.

This target describes execution ownership, not network routing.

## Variants

### `HarnessNative`

<pre />

The selected adapter maps and executes the capability through its harness.

### `FabricManaged`

<pre />

NeMo Fabric executes the capability outside the harness-native surface.

### `Unsupported`

<pre />

Neither the adapter nor NeMo Fabric can execute the configured capability.

## Trait Implementations

### `impl Clone for CapabilityTarget`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for CapabilityTarget`

<pre />

#### `fmt`

<pre />

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

<pre />

#### `deserialize`

<pre />

### `impl JsonSchema for CapabilityTarget`

<pre />

#### `schema_name`

<pre />

#### `schema_id`

<pre />

#### `json_schema`

<pre />

#### `inline_schema`

<pre />

### `impl PartialEq for CapabilityTarget`

<pre />

#### `eq`

<pre />

#### `ne`

<pre />

### `impl Serialize for CapabilityTarget`

<pre />

#### `serialize`

<pre />

### `impl Copy for CapabilityTarget`

<pre />

### `impl Eq for CapabilityTarget`

<pre />

### `impl StructuralPartialEq for CapabilityTarget`

<pre />