> 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 Resolution Strategy

> Adapter install or availability strategy.

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

```rust
pub enum ResolutionStrategy {
    Preinstalled,
    ImageProvided,
    PipUv,
    Npm,
    Source,
    Service,
    NativePlugin,
}
```

Adapter install or availability strategy.

## Variants

### `Preinstalled`

<pre />

Harness is already available in the prepared environment.

### `ImageProvided`

<pre />

Environment image already contains the harness and dependencies.

### `PipUv`

<pre />

Adapter may install a Python package with pip or uv.

### `Npm`

<pre />

Adapter may install a Node package.

### `Source`

<pre />

Adapter may install from source.

### `Service`

<pre />

Adapter connects to an already-running service.

### `NativePlugin`

<pre />

Adapter is installed through a harness-native plugin manager.

## Trait Implementations

### `impl Clone for ResolutionStrategy`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for ResolutionStrategy`

<pre />

#### `fmt`

<pre />

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

<pre />

#### `deserialize`

<pre />

### `impl JsonSchema for ResolutionStrategy`

<pre />

#### `schema_name`

<pre />

#### `schema_id`

<pre />

#### `json_schema`

<pre />

#### `inline_schema`

<pre />

### `impl PartialEq for ResolutionStrategy`

<pre />

#### `eq`

<pre />

#### `ne`

<pre />

### `impl Serialize for ResolutionStrategy`

<pre />

#### `serialize`

<pre />

### `impl Copy for ResolutionStrategy`

<pre />

### `impl Eq for ResolutionStrategy`

<pre />

### `impl StructuralPartialEq for ResolutionStrategy`

<pre />