#[repr(u32)]pub enum AVIODirEntryType {
AVIO_ENTRY_UNKNOWN = 0,
AVIO_ENTRY_BLOCK_DEVICE = 1,
AVIO_ENTRY_CHARACTER_DEVICE = 2,
AVIO_ENTRY_DIRECTORY = 3,
AVIO_ENTRY_NAMED_PIPE = 4,
AVIO_ENTRY_SYMBOLIC_LINK = 5,
AVIO_ENTRY_SOCKET = 6,
AVIO_ENTRY_FILE = 7,
AVIO_ENTRY_SERVER = 8,
AVIO_ENTRY_SHARE = 9,
AVIO_ENTRY_WORKGROUP = 10,
}
Variants§
AVIO_ENTRY_UNKNOWN = 0
AVIO_ENTRY_BLOCK_DEVICE = 1
AVIO_ENTRY_CHARACTER_DEVICE = 2
AVIO_ENTRY_DIRECTORY = 3
AVIO_ENTRY_NAMED_PIPE = 4
AVIO_ENTRY_SYMBOLIC_LINK = 5
AVIO_ENTRY_SOCKET = 6
AVIO_ENTRY_FILE = 7
AVIO_ENTRY_SERVER = 8
AVIO_ENTRY_SHARE = 9
AVIO_ENTRY_WORKGROUP = 10
Trait Implementations§
Source§impl Clone for AVIODirEntryType
impl Clone for AVIODirEntryType
Source§fn clone(&self) -> AVIODirEntryType
fn clone(&self) -> AVIODirEntryType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AVIODirEntryType
impl Debug for AVIODirEntryType
Source§impl Hash for AVIODirEntryType
impl Hash for AVIODirEntryType
Source§impl PartialEq for AVIODirEntryType
impl PartialEq for AVIODirEntryType
impl Copy for AVIODirEntryType
impl Eq for AVIODirEntryType
impl StructuralPartialEq for AVIODirEntryType
Auto Trait Implementations§
impl Freeze for AVIODirEntryType
impl RefUnwindSafe for AVIODirEntryType
impl Send for AVIODirEntryType
impl Sync for AVIODirEntryType
impl Unpin for AVIODirEntryType
impl UnwindSafe for AVIODirEntryType
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