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

# Enum Atof Endpoint Transport

> Streaming transport used by an ATOF endpoint.

Generated from `cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-ffi`.

```rust
pub enum AtofEndpointTransport {
    HttpPost,
    Websocket,
    Ndjson,
}
```

Streaming transport used by an ATOF endpoint.

## Variants

### `HttpPost`

<pre />

POST each event as one JSONL record.

### `Websocket`

<pre />

Send each event as one WebSocket JSON text message.

### `Ndjson`

<pre />

Stream events over one long-lived HTTP NDJSON upload.

## Implementations

### `impl AtofEndpointTransport`

<pre />

#### `parse`

<pre />

Parse a string transport used by configuration and bindings.

#### `as_str`

<pre />

Return the stable string representation used by configuration and bindings.

## Trait Implementations

### `impl Clone for AtofEndpointTransport`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for AtofEndpointTransport`

<pre />

#### `fmt`

<pre />

### `impl Default for AtofEndpointTransport`

<pre />

#### `default`

<pre />

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

<pre />

#### `deserialize`

<pre />

### `impl PartialEq for AtofEndpointTransport`

<pre />

#### `eq`

<pre />

#### `ne`

<pre />

### `impl Serialize for AtofEndpointTransport`

<pre />

#### `serialize`

<pre />

### `impl Copy for AtofEndpointTransport`

<pre />

### `impl Eq for AtofEndpointTransport`

<pre />

### `impl StructuralPartialEq for AtofEndpointTransport`

<pre />