0

我在 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)

4

1 回答 1

1

write!期望输出缓冲区作为它的第一个参数:

write!(f, "Nothing seriously")
于 2017-09-06T19:35:13.750 回答