Type of a directory entry.
enum Type {
BlockDevice,
CharDevice,
Directory,
FIFO,
File,
Socket,
SymLink,
Unknown,
}| Name | Description |
|---|---|
| BlockDevice | A block device. |
| CharDevice | A character device. |
| Directory | A directory. |
| FIFO | A named pipe. |
| File | A regular file. |
| Socket | A UNIX domain socket. |
| SymLink | A symbolic link. |
| Unknown | Unknown |
| Name | Description |
|---|---|
| Clone | Objects that can be duplicated. |
| Copy | Objects that can safely be copied via |
| Debug | Objects that can be formatted in a "debug" form. |
| Eq | Objects that implement the binary |
| MaybeClone | Objects that can be duplicated. |