// Copyright (C) 2026 Olivér Pirger
// SPDX-License-Identifier: GPL-3.0-or-later
//! Error types for this crate.
//!
//! All fallible operations return [`Result`] in this crate,
//! which is an alias for [`core::result::Result`] with [`Error`] as the error type.
/// Errors that can occur when using this crate.
/// A specialised [`Result`](core::result::Result) type for this crate.
pub type Result<T> = Result;