我在Rust中有以下代码
use std::fmt;
pub struct MyRange<Idx> {
pub start: Idx,
pub end: Idx,
}
impl fmt::Debug for MyRange<f32> {
fn fmt( &self, f: &mut fmt::Formatter ) -> fmt::Result {
write!( "Nothing seriously" )
}
}
fn main() {
let start:f32= 1.2;
let end:f32 = 5.;
let rng2 = MyRange { start: start, end: end};
println!( "{:?}", rng2 );
}
在编译时,我收到以下错误
error: unexpected end of macro invocation
--> src/main.rs:10:17
|
10 | write!( "Nothing seriously" )
| ^^^^^^^^^^^^^^^^^^^
我不确定问题是什么。
编辑:我正在使用最新的Rust版本(稳定1.20)