Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. pub trait TheTrait<T> {
  2. pub fn without_self() -> T;
  3. pub fn with_self(&self) -> T {
  4. TheTrait::without_self()
  5. }
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement