std::line

Macro std::line

macro_rules! line {
    () => { ... };
}

A macro which expands to the line number on which it was invoked.

The expanded expression has type u32, and the returned line is not the invocation of the line!() macro itself, but rather the first macro invocation leading up to the invocation of the line!() macro.

Examples

let current_line = line!();
println!("defined on line: {}", current_line);

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/macro.line.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部