File: default-with-default.rs

package info (click to toggle)
rust-blanket 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 548 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 136 bytes parent folder | download
1
2
3
4
5
6
7
8
9
extern crate blanket;
use blanket::blanket;

#[blanket(default = "default")]
pub trait MyTrait {
    fn method() {}
}

pub fn main() {}