1 2 3 4 5 6 7 8 9
pub mod standard; pub use standard::*; use crate::lubrications::Grease; pub fn all_polyurea_greases() -> Vec<&'static Grease> { vec![&standard::POLYUREA_GREASE] }