pub trait Unit:
Sized
+ Default
+ Copy
+ Clone
+ PartialEq
+ Eq {
const VALUE: Self;
}
Expand description
All zero-sized types in this crate implement this trait.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.