# CorpusEntry

`import { CorpusEntry } from "destack:fuzz";`

Saved fuzz corpus entry.

```ds title="CorpusEntry"
export struct CorpusEntry<T> {
    value: T;
    sample: Sample;
    replay: Replay;
}
```

[language/library/src/fuzz/corpus.ds:9:18](https://github.com/destack-sh/destack/blob/main/language/library/src/fuzz/corpus.ds#L9-L18)

## Members

### `value: T`

Entry value.

### `sample: Sample`

Sample metadata that produced this value.

### `replay: Replay`

Replay input when available.
