这期内容当中小编将会给大家带来有关Fuchsia中Rust 开发的示例分析,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。
成都创新互联公司专注于宣州网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供宣州营销型网站建设,宣州网站制作、宣州网页设计、宣州网站官网定制、小程序定制开发服务,打造宣州网络公司原创品牌,更为您提供宣州网站排名全网营销落地服务。
GameLisp
GameLisp
是一个用于 Rust 游戏开发的脚本语言。Shredder
项目Shredder
项目主要针对于 Rust 的智能指针的“垃圾回收”。derive_aktor
derive_aktor
是一个宏库,使用起来还是挺方便的,项目地址: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 开发的示例分析了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注创新互联行业资讯频道。
名称栏目:Fuchsia中Rust开发的示例分析
当前网址:https://www.cdcxhl.com/article22/pppdjc.html
成都网站建设公司_创新互联,为您提供企业建站、App设计、标签优化、自适应网站、软件开发、网站改版
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联