39 lines
1.2 KiB
Rust
39 lines
1.2 KiB
Rust
|
macro_rules! impl_display {
|
||
|
(for $ty:ty => $(|$selfty:pat_param|)? $fmt:literal $(, $($param:expr),+)? $(,)?) => {
|
||
|
impl ::core::fmt::Display for $ty {
|
||
|
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
|
||
|
$(let $selfty = self;)?
|
||
|
write!(f, $fmt, $($param),*)
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
(for $ty:ty => $str:literal) => {
|
||
|
impl ::core::fmt::Display for $ty {
|
||
|
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
|
||
|
f.write_str($str)
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
(for $ty:ty => match {$(
|
||
|
$bind:pat => $fmt:literal $(,$($param:expr),* $(,)?)?;
|
||
|
)*}) => {
|
||
|
impl ::core::fmt::Display for $ty {
|
||
|
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
|
||
|
match self {
|
||
|
$(
|
||
|
$bind => write!(f, $fmt, $($($param),*)?)
|
||
|
),*
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
macro_rules! static_assert_eq(($l:expr, $r:expr $(,)?) => {
|
||
|
const _: [(); ($l != $r) as usize] = [];
|
||
|
});
|
||
|
|
||
|
pub(crate) use {impl_display, static_assert_eq};
|