1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#[cfg(not(target_os = "wasi"))]
use crate::fs::DirOptionsExt;
#[derive(Debug, Clone)]
pub struct DirOptions {
#[cfg(not(target_os = "wasi"))]
#[allow(dead_code)]
pub(crate) ext: DirOptionsExt,
}
impl DirOptions {
#[allow(clippy::new_without_default)]
#[inline]
pub const fn new() -> Self {
Self {
#[cfg(not(target_os = "wasi"))]
ext: DirOptionsExt::new(),
}
}
}
#[cfg(unix)]
impl std::os::unix::fs::DirBuilderExt for DirOptions {
#[inline]
fn mode(&mut self, mode: u32) -> &mut Self {
self.ext.mode(mode);
self
}
}
#[cfg(target_os = "vxworks")]
impl std::os::vxworks::fs::DirBuilderExt for DirOptions {
#[inline]
fn mode(&mut self, mode: u32) -> &mut Self {
self.ext.mode(mode);
self
}
}
#[cfg(feature = "arbitrary")]
impl arbitrary::Arbitrary<'_> for DirOptions {
fn arbitrary(u: &mut arbitrary::Unstructured<'_>) -> arbitrary::Result<Self> {
#[cfg(any(unix, target_os = "vxworks"))]
use std::os::unix::fs::DirBuilderExt;
#[allow(unused_mut)]
let mut dir_options = Self::new();
#[cfg(any(unix, target_os = "vxworks"))]
dir_options.mode(u.int_in_range(0..=0o777)?);
#[cfg(not(any(unix, target_os = "vxworks")))]
let _ = u;
Ok(dir_options)
}
}