• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 pub enum Empty {}
2 
3 #[no_mangle]
is_none(opt: Option<Empty>) -> bool4 pub fn is_none(opt: Option<Empty>) -> bool {
5     match opt {
6         None => true,
7     }
8 }
9