這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)Fuchsia中Rust 開發(fā)的示例分析,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
成都創(chuàng)新互聯(lián)公司專注于宣州網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供宣州營銷型網(wǎng)站建設(shè),宣州網(wǎng)站制作、宣州網(wǎng)頁設(shè)計(jì)、宣州網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務(wù),打造宣州網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供宣州網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
GameLisp
GameLisp
是一個(gè)用于 Rust 游戲開發(fā)的腳本語言。Shredder
項(xiàng)目Shredder
項(xiàng)目主要針對(duì)于 Rust 的智能指針的“垃圾回收”。derive_aktor
derive_aktor
是一個(gè)宏庫,使用起來還是挺方便的,項(xiàng)目地址:https://github.com/insanitybit/derive_aktorpub struct KeyValueStore<U>
where U: Hash + Eq + Send + 'static{
inner_store: HashMap<U, String>,
self_actor: Option<KeyValueStoreActor<U>>,
}
impl<U: Hash + Eq + Send + 'static> KeyValueStore<U> {
pub fn new() -> Self {
Self {
inner_store: HashMap::new(),
self_actor: None,
}}
}
// All methods in this block form our Actor's API
#[derive_actor]
impl<U: Hash + Eq + Send + 'static> KeyValueStore<U> {
pub fn query(&self, key: U, f: Box<dyn Fn(Option<String>) + Send + 'static>) {
println!("query");
f(self.inner_store.get(&key).map(String::from))
}
pub fn set(&mut self, key: U, value: String) {
println!("set");
self.inner_store.insert(key, value);}
}
#[tokio::main]
async fn main() {
let (kv_store, handle) = KeyValueStoreActor::new(KeyValueStore::new()).await;
// We can use an async API that's typed and nominal
kv_store.query("foo", Box::new(|value| println!("before {:?}", value))).await;
kv_store.set("foo", "bar".to_owned()).await;
kv_store.query("foo", Box::new(|value| println!("after {:?}", value))).await;
// We must drop any references to kv_store before we await the handle, or it will leak!
drop(kv_store);
handle.await;
}
上述就是小編為大家分享的Fuchsia中Rust 開發(fā)的示例分析了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
名稱欄目:Fuchsia中Rust開發(fā)的示例分析
當(dāng)前網(wǎng)址:http://jinyejixie.com/article22/pppdjc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、App設(shè)計(jì)、標(biāo)簽優(yōu)化、自適應(yīng)網(wǎng)站、軟件開發(fā)、網(wǎng)站改版
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)