macro_rules! static_assert {
($x:expr $(,)?) => { ... };
}Expand description
Compile-time assertion. Fails to compile if the condition is false.
macro_rules! static_assert {
($x:expr $(,)?) => { ... };
}Compile-time assertion. Fails to compile if the condition is false.