eve_esi 0.4.9

Thread-safe, asynchronous client for EVE Online's ESI & OAuth2
Documentation
//! # EVE ESI Clone Enums
//!
//! Provides clone-related enums for EVE Online
//!
//! ## ESI Documentation
//! - <https://developers.eveonline.com/api-explorer#>
//!
//! ## Enums
//! - [`CharacterCloneLocationType`]: The location type of a character's clone

use serde::{Deserialize, Serialize};

/// The location type of a character's clone
///
/// # Documentation
/// - <https://developers.eveonline.com/api-explorer#/schemas/CharactersCharacterIdClonesGet>
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
pub enum CharacterCloneLocationType {
    /// Clone is located in a station
    #[serde(rename = "station")]
    Station,
    /// Clone is located in a structure
    #[serde(rename = "structure")]
    Structure,
}