#[repr(u32)]
pub enum AVIODirEntryType {
AVIO_ENTRY_UNKNOWN,
AVIO_ENTRY_BLOCK_DEVICE,
AVIO_ENTRY_CHARACTER_DEVICE,
AVIO_ENTRY_DIRECTORY,
AVIO_ENTRY_NAMED_PIPE,
AVIO_ENTRY_SYMBOLIC_LINK,
AVIO_ENTRY_SOCKET,
AVIO_ENTRY_FILE,
AVIO_ENTRY_SERVER,
AVIO_ENTRY_SHARE,
AVIO_ENTRY_WORKGROUP,
}Variants§
AVIO_ENTRY_UNKNOWN
AVIO_ENTRY_BLOCK_DEVICE
AVIO_ENTRY_CHARACTER_DEVICE
AVIO_ENTRY_DIRECTORY
AVIO_ENTRY_NAMED_PIPE
AVIO_ENTRY_SYMBOLIC_LINK
AVIO_ENTRY_SOCKET
AVIO_ENTRY_FILE
AVIO_ENTRY_SERVER
AVIO_ENTRY_SHARE
AVIO_ENTRY_WORKGROUP
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<AVIODirEntryType> for AVIODirEntryType
impl PartialEq<AVIODirEntryType> for AVIODirEntryType
source§fn eq(&self, other: &AVIODirEntryType) -> bool
fn eq(&self, other: &AVIODirEntryType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.