#[repr(C)]pub struct FileType {
pub name: [u8; 128],
pub osx_type: [u8; 8],
pub win_type: [u8; 8],
pub nix_type: [u8; 8],
pub mime_type_1: [u8; 128],
pub mime_type_2: [u8; 128],
}Expand description
File type descriptor.
Fields§
§name: [u8; 128]Display name of file type.
osx_type: [u8; 8]OS X file type.
win_type: [u8; 8]Windows file type.
nix_type: [u8; 8]Unix file type.
mime_type_1: [u8; 128]MIME type.
mime_type_2: [u8; 128]Additional MIME type.