# SendError

`import { SendError } from "destack:channel";`

Failed send operation.

```ds title="SendError"
export struct SendError<T> {
    kind: SendErrorKind;
    value: T;
}
```

[language/library/src/channel/channel.ds:24:30](https://github.com/destack-sh/destack/blob/main/language/library/src/channel/channel.ds#L24-L30)

## Members

### `kind: SendErrorKind`

The failure kind.

### `value: T`

The value that was not sent.
