#[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.
Auto Trait Implementations§
impl Freeze for FileType
impl RefUnwindSafe for FileType
impl Send for FileType
impl Sync for FileType
impl Unpin for FileType
impl UnwindSafe for FileType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more