1 2 3 4 5 6 7 8 9 10 11
//! # Solscan-API-Endpoints //! This module represents the Solscan-API-Errors /// Creating an enum for SolscanErrors. #[derive(Debug)] pub enum SolscanError { APIError, APIWrongStatusCode, APICConversionError, SerializeError, }