//! # Error Type Definitions for [`ScanMgr`]
//!
//! This module defines the comprehensive error type for the scan
//! manager service. Any error arising from interacting with the service
//! will be of this type.
//!
//! [`ScanMgr`]: super::ScanMgr
use Error as ThisError;
/// Type alias for fallible return types that may return [`Error`].
pub type ScanMgrResult<T> = ;
/// Comprehensive error type for [`ScanMgr`]
///
/// [`ScanMgr`]: super::ScanMgr