/*
* Ethereal Exchange API
*
* Ethereal HTTP API for real-time trading, order management, and market data access.
*
* The version of the OpenAPI document: 0.1.0
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// ProtocolEnum : Extracted enum for ProtocolEnum
/// Extracted enum for ProtocolEnum
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum ProtocolEnum {
#[serde(rename = "HTTP")]
Http,
}
impl std::fmt::Display for ProtocolEnum {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Self::Http => write!(f, "HTTP"),
}
}
}
impl Default for ProtocolEnum {
fn default() -> ProtocolEnum {
Self::Http
}
}