struct Attributes;
impl Attributes {
fn contact() -> (String, String, String) {
let discord = String::from("Bond#8149");
let email = String::from("[email protected]")
(discord, email)
}
fn life() -> (Vec<String>, u32) {
let langs = vec![
String::from("Chinese"),
String::from("English"),
];
let age = 24;
(langs, age)
}
fn coding() -> (Vec<(String, Vec<String>)>, Vec<String>, Vec<String>) {
let mut langs = Vec::new();
langs.push((String::from("expert"), vec![String::from("rust"), String::from("go"), String::from("move")]));
langs.push((String::from("intermediate"), vec![String::from("typescript"), String::from("python")]));
langs.push((
String::from("learning"),
vec![
String::from("solidity"),
String::from("c++"),
String::from("c"),
],
));
let specialities = vec![
String::from("smart contract engineering"),
String::from("fullstack engineering"),
];
let environnement = vec![String::from("vscode")];
(langs, specialities, environnement)
}
}
🧸
Power!
Pinned Loading
-
SyntSugar/embedding
SyntSugar/embedding PublicA one-stop HTTP service for sentence semantic embedding, based on the advanced Sentence Transformers model.
Python 2
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.