1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright (C) 2026 Olivér Pirger // SPDX-License-Identifier: GPL-3.0-or-later #[derive(Debug)] pub enum Error { ReadError, WriteError, InvalidId, NotReady, Timeout, } pub type Result<T> = core::result::Result<T, Error>;