mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-13 16:40:03 +00:00
20 lines
317 B
Rust
20 lines
317 B
Rust
pub trait Tr {
|
|
type VisibleAssoc;
|
|
#[doc(hidden)]
|
|
type HiddenAssoc;
|
|
|
|
const VISIBLE_ASSOC: ();
|
|
#[doc(hidden)]
|
|
const HIDDEN_ASSOC: ();
|
|
}
|
|
|
|
pub struct Ty;
|
|
|
|
impl Tr for Ty {
|
|
type VisibleAssoc = ();
|
|
type HiddenAssoc = ();
|
|
|
|
const VISIBLE_ASSOC: () = ();
|
|
const HIDDEN_ASSOC: () = ();
|
|
}
|