Expand description
§Error Types
This module provides error types for the steckrs library.
The error types in this module are used throughout the library to represent various failure conditions that can occur during plugin management, hook registration, and other operations.
Error types are defined with help of the thiserror crate.
§Error Types
PluginError: Errors related to Plugin managementHookError: Errors related to hook registration and management
§Result Types
This module also provides type aliases for commonly used Result types:
PluginResult<T>: Results from plugin operationsHookResult<T>: Results from hook operations
Enums§
- Hook
Error - Error type for hook-related operations.
- Plugin
Error - Error type for plugin-related operations.
Type Aliases§
- Hook
Result - Result type for plugin operations
- Plugin
Result - Result type for plugin operations