resume/publications.rs
1//! Publications and articles
2use resume_macro::CleanupDocs;
3
4/// Link to article or publication
5pub trait Link<Language> {}
6
7/// Series of articles "[Rust for Python developers](https://habr.com/ru/company/rambler_group/blog/533268/)" created in collaboration with Andrey Ermolov.
8///
9/// In this articles we will talk about why we move away from the usual technology stack, and show what advantages Rust has compared to Python.
10/// * First part ([Text version](https://habr.com/ru/company/rambler_group/blog/533268/))
11/// * Types
12/// * User types and polymorphism
13/// * Enums
14/// * Option & Result
15/// * Pattern matching
16/// * Traits and Protocols
17/// * Generic programming
18/// * Second part ([Text version](https://habr.com/ru/company/rambler_group/blog/535234/))
19/// * Multithreading
20/// * Asynchronous
21/// * Functional programming
22/// * Conclusion
23///
24/// You can see video version: [crate::conferences::RustForPythonDevelopers]
25#[derive(CleanupDocs)]
26pub struct RustForPythonDevelopers;
27/// [Rust for Python developers](https://habr.com/ru/company/rambler_group/blog/533268/)
28impl<Ru> Link<Ru> for RustForPythonDevelopers {}