Skip to main content

Module error

Module error 

Source
Expand description

Error types for the edgefirst-tflite crate.

This module follows the canonical error struct pattern: a public Error struct wrapping a private ErrorKind enum. Callers inspect errors through Error::is_library_error, Error::is_delegate_error, Error::is_null_pointer, and Error::status_code rather than matching on variants directly.

Structs§

Error
The error type for all fallible operations in edgefirst-tflite.

Enums§

StatusCode
Status codes returned by the TensorFlow Lite C API.

Type Aliases§

Result
A Result type alias using Error as the error variant.