# NetworkPacketStats

`import { NetworkPacketStats } from "destack:net/binding";`

Network packet capture statistics.

```ds title="NetworkPacketStats"
export struct NetworkPacketStats {
    receivedPackets: uint64;
    droppedPackets: uint64;
    interfaceDroppedPackets: uint64;
}
```

[language/library/src/net/binding/raw.ds:103:110](https://github.com/destack-sh/destack/blob/main/language/library/src/net/binding/raw.ds#L103-L110)

## Members

### `receivedPackets: uint64`

Packets received by the backend.

### `droppedPackets: uint64`

Packets dropped by the backend.

### `interfaceDroppedPackets: uint64`

Packets dropped by the interface.
