# SendErrorKind

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

Channel send failure kind.

```ds title="SendErrorKind"
export enum SendErrorKind {
    Closed,
    Full,
}
```

[language/library/src/channel/channel.ds:6:11](https://github.com/destack-sh/destack/blob/main/language/library/src/channel/channel.ds#L6-L11)

## Variants

### `Closed`

The receiver endpoint is closed.

### `Full`

The bounded channel is full.
