We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
open_options
1 parent 04bd505 commit cb771b2Copy full SHA for cb771b2
std/src/fs.rs
@@ -466,6 +466,7 @@ impl File {
466
/// ```
467
#[must_use]
468
#[stable(feature = "with_options", since = "1.58.0")]
469
+ #[cfg_attr(not(test), rustc_diagnostic_item = "file_options")]
470
pub fn options() -> OpenOptions {
471
OpenOptions::new()
472
}
@@ -1009,6 +1010,7 @@ impl OpenOptions {
1009
1010
/// let mut options = OpenOptions::new();
1011
/// let file = options.read(true).open("foo.txt");
1012
1013
+ #[cfg_attr(not(test), rustc_diagnostic_item = "open_options_new")]
1014
#[stable(feature = "rust1", since = "1.0.0")]
1015
1016
pub fn new() -> Self {
0 commit comments