fallthrough:Rust 的简单失败匹配

时间:2024-07-21 16:15:59
【文件属性】:

文件名称:fallthrough:Rust 的简单失败匹配

文件大小:2KB

文件格式:ZIP

更新时间:2024-07-21 16:15:59

Rust

坠落 一个提供失败match的宏。 要求 在Cargo.toml包含以下Cargo.toml : [ dependencies . fallthrough ] git = " https://github.com/pythonesque/fallthrough " version = " 0.0.1 " 在你的lib.rs : #[macro_use] extern crate fallthrough; 用法 #[allow(unreachable_code)] fn main () { let mut x = 0 ; match_fallthrough! (x, { 0 => { assert_eq! (x, 0 ); x = 1 ; }, 1 => { assert_eq! (x, 1 ); x = 2 ; break ; },


【文件预览】:
fallthrough-master
----.gitignore(20B)
----README.md(592B)
----Cargo.toml(104B)
----examples()
--------simple.rs(313B)
----src()
--------lib.rs(2KB)

网友评论