bfflib 0.8.0

Extract content of BFF file (AIX Backup file format)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Attribute constants for file modes

/// No attribute is set
pub const ATTRIBUTE_NONE: u8 = 0;
/// Permissions attribute like rw-r--r-- set
pub const ATTRIBUTE_PERMISSIONS: u8 = 0b1;
/// Owner and group attribute set
pub const ATTRIBUTE_OWNERS: u8 = 0b10;
/// Access and modified timestamp attributes set
pub const ATTRIBUTE_TIMESTAMPS: u8 = 0b100;
/// Default attributes as used by bfflib
pub const ATTRIBUTE_DEFAULT: u8 = ATTRIBUTE_TIMESTAMPS;