# EnumResultStatus

`EnumResultStatus` is a enumeration that defines the result status of the associated [`BarcodeScanResult`](https://www.dynamsoft.com/barcode-reader/docs/mobile/programming/react-native/api-reference/barcode-scanner/barcode-scan-result.md).

## Definition

*Assembly:* dynamsoft-barcode-reader-bundle-react-native

```tsx
enum EnumResultStatus {
  RS_FINISHED,
  RS_CANCELED,
  RS_EXCEPTION
}
```

## Members

| Member | Description |
| ------ | ----------- |
| `RS_FINISHED` | The barcode decoding process was a success and the result has been received. |
| `RS_CANCELED` | The barcode decoding process was cancelled by the user (usually by closing the UI using the close button). |
| `RS_EXCEPTION` | Something went wrong during the barcode decoding process and an exception has been thrown. |
