mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 04:28:17 +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;
|