# CameraWatchEventOverflow

`import { CameraWatchEventOverflow } from "destack:device/binding";`

Camera overflow watch event.

```ds title="CameraWatchEventOverflow"
export struct CameraWatchEventOverflow {
    kind: "overflow";
    timestampNs: uint64;
    sequence: uint64;
    droppedCount: uint64;
}
```

[language/library/src/device/binding/camera.ds:248:257](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/camera.ds#L248-L257)

## Members

### `kind: "overflow"`

Event discriminator.

### `timestampNs: uint64`

Event timestamp in nanoseconds.

### `sequence: uint64`

Event sequence number.

### `droppedCount: uint64`

Number of dropped events.
