1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use crate::hobbies::{Biking, EmbeddedSystems, Music, Piano, Tennis, CTF};
use self::{languages::Rust, tools::Linux};
pub trait TechnicalInterests
where
Self: Rust + DistributedSystems + Linux + CRDT + EmbeddedSystems + Cryptography,
{
}
pub trait Hobbies
where
Self: Music + Piano + Tennis + EmbeddedSystems + Biking + CTF,
{
}
pub trait CRDT {}
pub trait Cryptography {}
pub trait DistributedSystems {}
pub mod languages {
pub trait Languages: Rust + Python {}
pub trait Rust {}
pub trait Python {}
pub trait CPP {}
pub trait PHP {}
pub trait Erlang {}
pub trait CS {}
pub trait JS {}
}
pub mod databases {
pub trait Postgresql {}
pub trait Riak {}
pub trait Cassandra {}
pub trait MySQL {}
pub trait ClickHouse {}
}
pub mod frameworks {
pub trait Actix {}
pub trait Tokio {}
pub trait AsyncIO {}
pub trait AioHTTP {}
pub trait Flask {}
pub trait Celery {}
pub trait Django {}
pub trait OpenGL {}
pub trait Qt {}
}
pub mod messages {
pub trait RabbitMQ {}
pub trait GRPC {}
}
pub mod tools {
pub trait Linux {}
pub trait Neovim {}
}