resume 0.2.3

btwiuse's resume
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/54848194?v=4")]

//! # BTW I USE ARCH
//!
//! Hello world!

pub enum Devices {
    Pixelbook,
    Pixel5,
}

pub trait Empty {}

pub trait Any {}

impl Empty for () {}

impl<T: Empty> Any for T {}