"git@git.gsi.de:debian-packages/lustre-release.git" did not exist on "8b9f7f5cfe67cfe6aba8661705ffdf06af2be6e0"
Newer
Older
#[derive(Debug, PartialEq, Clone)]
pub enum LightData {
Energy(LightDataEnergy),
Geometric(LightDataGeometric),
Fourier,
impl Display for LightData {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
LightData::Energy(e) => write!(f, "Energy: {}", e.energy),
_ => write!(f, "No display defined for this type of LightData"),
}
}
}
#[derive(Debug, PartialEq, Clone)]
pub struct LightDataEnergy {
#[derive(Debug, PartialEq, Clone)]
pub struct LightDataGeometric {