Home
last modified time | relevance | path

Searched defs:SizeToTag (Results 1 – 1 of 1) sorted by relevance

/linux/rust/zerocopy/src/util/
H A Dmacro_util.rs267 pub trait SizeToTag<const SIZE: usize> { interface
271 impl SizeToTag<1> for () { impl
274 impl SizeToTag<2> for () { implementation
277 impl SizeToTag<4> for () { implementation
280 impl SizeToTag<8> for () { implementation
283 impl SizeToTag<16> for () { implementation
290 pub type SizeToTag<const SIZE: usize> = <() as size_to_tag::SizeToTag<SIZE>>::Tag; typedef