pub trait Construct: Send + Sync + Copy + 'static { }
The base trait for all ggmath types. Is automatically implemented for all types that implement Send, Sync, Copy, and ['static].
ggmath
Send
Sync
Copy
'static
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.