lattice-sdk 0.1.1

Rust SDK for Lattice API
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use crate::prelude::*;

/// Describes a Echelon group type.  Comprised of entities which are members of the
/// same unit or echelon. Ex: A group of tanks within a armored company or that same company
/// as a member of a battalion.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Hash)]
pub struct Echelon {
    #[serde(rename = "armyEchelon")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub army_echelon: Option<EchelonArmyEchelon>,
}