#[derive(Debug)]
struct Me {
first_name: String,
last_name: String,
email: String,
phone: String,
birthday: String,
telegram: String,
instagram: String,
linkedin: String,
}
impl Me {
fn new() -> Self {
Self {
first_name: "Javad".into(),
last_name: "Rajabzadeh".into(),
email: "MrJavad.Email@gmail.com".into(),
phone: "+989389967943".into(),
birthday: "1386/07/14".into(),
telegram: "https://t.me/PyJavad".into(),
instagram: "https://instagram.com/PyJavad".into(),
linkedin: "...".into(),
}
}
}
fn main() {
let me = Me::new();
println!("{:?}", me);
}
π
I may be slow to respond.
Popular repositories Loading
-
-
RESTful-user-auth
RESTful-user-auth PublicA RESTful user management API with JWT authentication using FastAPI.
Python
-
downloader-bot
downloader-bot PublicA Telegram bot to download content from instagram and spotify.
Python
-
account-manager
account-manager PublicA telegram bot to save your accounts and manage your telegram account.
Python
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.
