Skip to main content

Module error

Module error 

Source
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§

GhostError
The error type for Ghost API operations.

Type Aliases§

Result
A specialized Result type for Ghost API operations.