mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
13 lines
179 B
Rust
13 lines
179 B
Rust
![]() |
mod m {
|
||
|
pub struct Uuid(());
|
||
|
|
||
|
impl Uuid {
|
||
|
pub fn encode_buffer() -> [u8; LENGTH] {
|
||
|
[]
|
||
|
}
|
||
|
}
|
||
|
const LENGTH: usize = 0;
|
||
|
}
|
||
|
|
||
|
pub use m::Uuid;
|