rfluids 0.3.1

🦀 Rusty CoolProp wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::fmt::Debug;

/// Thermodynamic state variant.
pub trait StateVariant: Debug {}

impl StateVariant for Defined {}

impl StateVariant for Undefined {}

/// A marker that determines the _presence_ of a defined thermodynamic state.
#[derive(Debug)]
pub struct Defined;

/// A marker that determines the _absence_ of a defined thermodynamic state.
#[derive(Debug)]
pub struct Undefined;