pub const MOVE_MOUNT = packed struct(u32)
pub const MOVE_MOUNT = packed struct(u32) { /// Follow symlinks on from path. F_SYMLINKS: bool, // 0x00000001 /// Follow automounts on from path. F_AUTOMOUNTS: bool, // 0x00000002 /// Empty from path permitted. F_EMPTY_PATH: bool, // 0x00000004 _8: bool = false, // 0x00000008 /// Follow symlinks on to path. T_SYMLINKS: bool, // 0x00000010 /// Follow automounts on to path. T_AUTOMOUNTS: bool, // 0x00000020 /// Empty to path permitted. T_EMPTY_PATH: bool, // 0x00000040 _80: bool = false, // 0x00000080 /// Set sharing group instead. SET_GROUP: bool, // 0x00000100 _: u23 = 0, }