We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
std::fmt::Write
1 parent 93ab13b commit cc8259eCopy full SHA for cc8259e
library/core/src/fmt/mod.rs
@@ -119,6 +119,13 @@ pub trait Write {
119
///
120
/// This function will return an instance of [`Error`] on error.
121
122
+ /// Though it is possible for implementors of this trait to return an error, at the time
123
+ /// of writing these docs, no implementation of [`std::fmt::Write`] in the standard library
124
+ /// returns such an error.
125
+ ///
126
+ /// When working with external crates, it is advised to check the implementation of this
127
+ /// trait and anticipate any possible [`Error`]s.
128
129
/// # Examples
130
131
/// ```
0 commit comments