mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 19:08:20 +00:00
10 lines
315 B
Rust
10 lines
315 B
Rust
pub trait X {
|
|
const CONSTANT: u32;
|
|
type Type;
|
|
fn method(&self, s: String) -> Self::Type;
|
|
fn method2(self: Box<Self>, s: String) -> Self::Type;
|
|
fn method3(other: &Self, s: String) -> Self::Type;
|
|
fn method4(&self, other: &Self) -> Self::Type;
|
|
fn method5(self: &Box<Self>) -> Self::Type;
|
|
}
|