Skip to main content

Module error

Module error 

Source
Expand description

Crate-level error type for squib-virtio.

Per CLAUDE.md § Error Handling, we use thiserror and a single crate-rooted enum so callers can ? from any submodule without pre-mapping. Variants are non-exhaustive so future device modules can add their own without forcing every consumer to recompile match arms.

Enums§

VirtioError
Errors produced by the virtio transport, queue handling, or device frontends.

Type Aliases§

Result
All fallible operations in squib-virtio return Result<T, VirtioError>.