Last active
May 11, 2023 09:42
-
-
Save vebodev/6ac8abcb383ef0063956e94379290e6c to your computer and use it in GitHub Desktop.
Rust
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assert!(matches!(ret, Err(Error::ComingSoon))); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Leave ODBC to convert the parameter to the correct type | |
let param: Vec<_> = params | |
.iter() | |
.map(|p| p.into_parameter()) | |
.collect(); | |
connection.execute(&sql, param.as_slice())? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[derive(Debug, StructOpt)] | |
#[structopt(name = "wechat-user-refresh", about = "批量刷新微信用户 unionid")] | |
struct Opt { | |
#[structopt(short="t", long="token", help="微会员企业Token, 不是微信token")] | |
token: String, | |
#[structopt(short="c", long="concurrency", default_value="16", help="并发数")] | |
concurrency: usize, | |
#[structopt(name="FILE", parse(from_os_str), help="包含 card_num,openid 格式的 csv文件")] | |
file: PathBuf, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment