2020-01-06 15:36:33 +09:00
error: file opened with `truncate` and `read`
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:6:5
2018-10-06 09:18:06 -07:00
|
2018-12-27 16:57:55 +01:00
LL | OpenOptions::new().read(true).truncate(true).open("foo.txt");
2018-10-06 09:18:06 -07:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::nonsensical-open-options` implied by `-D warnings`
2023-08-01 14:02:21 +02:00
= help: to override `-D warnings` add `#[allow(clippy::nonsensical_open_options)]`
2017-02-07 21:05:30 +01:00
2020-01-06 15:36:33 +09:00
error: file opened with `append` and `truncate`
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:9:5
2018-10-06 09:18:06 -07:00
|
2018-12-27 16:57:55 +01:00
LL | OpenOptions::new().append(true).truncate(true).open("foo.txt");
2018-10-06 09:18:06 -07:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2017-02-07 21:05:30 +01:00
2020-01-06 15:36:33 +09:00
error: the method `read` is called more than once
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:12:35
2017-02-07 21:05:30 +01:00
|
2018-12-27 16:57:55 +01:00
LL | OpenOptions::new().read(true).read(false).open("foo.txt");
2023-10-10 12:08:17 +01:00
| ^^^^^^^^^^^
2017-02-07 21:05:30 +01:00
2020-01-06 15:36:33 +09:00
error: the method `create` is called more than once
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:14:37
2017-02-07 21:05:30 +01:00
|
2018-12-27 16:57:55 +01:00
LL | OpenOptions::new().create(true).create(false).open("foo.txt");
2023-10-10 12:08:17 +01:00
| ^^^^^^^^^^^^^
2017-02-07 21:05:30 +01:00
2023-10-04 13:56:18 +01:00
error: file opened with `create`, but `truncate` behavior not defined
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:14:24
2023-10-04 13:56:18 +01:00
|
LL | OpenOptions::new().create(true).create(false).open("foo.txt");
2023-10-10 12:08:17 +01:00
| ^^^^^^^^^^^^
2023-10-04 13:56:18 +01:00
|
2023-10-10 12:08:17 +01:00
= help: if you intend to overwrite an existing file entirely, call `.truncate(true)`. if you instead know that you may want to keep some parts of the old file, call `.truncate(false)`
2023-10-04 13:56:18 +01:00
= note: `-D clippy::suspicious-open-options` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::suspicious_open_options)]`
2020-01-06 15:36:33 +09:00
error: the method `write` is called more than once
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:16:36
2017-02-07 21:05:30 +01:00
|
2018-12-27 16:57:55 +01:00
LL | OpenOptions::new().write(true).write(false).open("foo.txt");
2023-10-10 12:08:17 +01:00
| ^^^^^^^^^^^^
2017-02-07 21:05:30 +01:00
2020-01-06 15:36:33 +09:00
error: the method `append` is called more than once
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:18:37
2017-02-07 21:05:30 +01:00
|
2018-12-27 16:57:55 +01:00
LL | OpenOptions::new().append(true).append(false).open("foo.txt");
2023-10-10 12:08:17 +01:00
| ^^^^^^^^^^^^^
2017-02-07 21:05:30 +01:00
2020-01-06 15:36:33 +09:00
error: the method `truncate` is called more than once
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:20:39
2017-02-07 21:05:30 +01:00
|
2018-12-27 16:57:55 +01:00
LL | OpenOptions::new().truncate(true).truncate(false).open("foo.txt");
2023-10-10 12:08:17 +01:00
| ^^^^^^^^^^^^^^^
2017-02-07 21:05:30 +01:00
2023-10-04 13:56:18 +01:00
error: file opened with `create`, but `truncate` behavior not defined
2023-10-10 12:08:17 +01:00
--> $DIR/open_options.rs:22:24
2023-10-04 13:56:18 +01:00
|
LL | OpenOptions::new().create(true).open("foo.txt");
2023-10-10 12:08:17 +01:00
| ^^^^^^^^^^^^
|
= help: if you intend to overwrite an existing file entirely, call `.truncate(true)`. if you instead know that you may want to keep some parts of the old file, call `.truncate(false)`
2023-10-04 13:56:18 +01:00
error: aborting due to 9 previous errors
2018-01-16 17:06:27 +01:00