Struct alloc::fmt::Error 1.0.0[−][src]
pub struct Error;
Expand description
将消息格式化为流后返回的错误类型。
除了发生错误以外,此类型不支持错误的传输。 必须安排任何其他信息以通过其他方式进行传输。
要记住的重要一点是,不要将 fmt::Error
类型与 std::io::Error
或 std::error::Error
混淆,在作用域中也可以将它们与 std::io::Error
或 std::error::Error
混淆。
Examples
use std::fmt::{self, write}; let mut output = String::new(); if let Err(fmt::Error) = write(&mut output, format_args!("Hello {}!", "world")) { panic!("An error occurred"); }Run