> 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 AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo/relay/_mcp/server.

# Struct Plugin Runtime

> Cloneable high-level runtime handle for host APIs available to native plugins.

Generated from `cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-pii-redaction -p nemo-relay-ffi -p nemo-relay-types -p nemo-relay-plugin -p nemo-relay-worker-proto -p nemo-relay-worker`.

```rust
pub struct PluginRuntime { /* private fields */ }
```

Cloneable high-level runtime handle for host APIs available to native plugins.

## Implementations

### `impl PluginRuntime`

<pre />

#### `new`

<pre />

Creates a runtime handle from the host ABI table.

#### `host_api`

<pre />

Returns the underlying host ABI table.

#### `current_scope`

<pre />

Retrieves the current scope handle.

#### `push_scope`

<pre />

Pushes a scope and emits its start event.

#### `pop_scope`

<pre />

Pops a scope and emits its end event.

#### `scope`

<pre />

Opens a scope that is popped automatically when the guard is closed or dropped.

#### `emit_mark`

<pre />

Emits a mark event under the current scope.

#### `create_scope_stack`

<pre />

Creates a new independent scope stack.

#### `capture_scope_stack_thread`

<pre />

Captures the current thread-local scope-stack binding.

#### `scope_stack_active`

<pre />

Returns whether the current context has an explicitly active scope stack.

#### `bind_scope_stack_thread`

<pre />

Binds `stack` to the current OS thread until the returned guard is dropped.

## Trait Implementations

### `impl Clone for PluginRuntime`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />