Remove requirement for quantity_type! macro to have Quantity and Value in scope #15
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
use physical::quantity::{Quantity, Value};
The problem is we can't specify the full path here because when use them in Physical Rust requires we
use crate
and when outside physical weuse physical
so the macro needs some kind of compilation flag or something to switch between the two.