1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! Recognized methods by warmy.
//!
//! > Disclaimer: those methods are just there for indications for now. It’s very likely that they
//! > will get moved in separate crates when time comes.

/// JSON method.
#[derive(Debug, Eq, Hash, PartialEq)]
pub struct JSON;

/// YAML method.
#[derive(Debug, Eq, Hash, PartialEq)]
pub struct YAML;

/// XML method.
#[derive(Debug, Eq, Hash, PartialEq)]
pub struct XML;