> 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 Environment Ownership

> Whether NeMo Fabric owns the underlying environment resource.

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

```rust
pub enum EnvironmentOwnership {
    CallerOwned,
    FabricOwned,
}
```

Whether NeMo Fabric owns the underlying environment resource.

## Variants

### `CallerOwned`

<pre />

The caller or a surrounding system owns the environment resource.

### `FabricOwned`

<pre />

NeMo Fabric created or leased the environment resource and may release it.

## Trait Implementations

### `impl Clone for EnvironmentOwnership`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for EnvironmentOwnership`

<pre />

#### `fmt`

<pre />

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

<pre />

#### `deserialize`

<pre />

### `impl JsonSchema for EnvironmentOwnership`

<pre />

#### `schema_name`

<pre />

#### `schema_id`

<pre />

#### `json_schema`

<pre />

#### `inline_schema`

<pre />

### `impl PartialEq for EnvironmentOwnership`

<pre />

#### `eq`

<pre />

#### `ne`

<pre />

### `impl Serialize for EnvironmentOwnership`

<pre />

#### `serialize`

<pre />

### `impl Copy for EnvironmentOwnership`

<pre />

### `impl Eq for EnvironmentOwnership`

<pre />

### `impl StructuralPartialEq for EnvironmentOwnership`

<pre />