Expand description
Error types for the Ghost API client.
This module provides the GhostError enum which encompasses all possible
errors that can occur when interacting with the Ghost API.
§Examples
use ghost_io_api::error::{GhostError, Result};
fn example_function() -> Result<String> {
// Your code here
Ok("success".to_string())
}Enums§
- Ghost
Error - The error type for Ghost API operations.
Type Aliases§
- Result
- A specialized
Resulttype for Ghost API operations.