Enum roffman::SectionNumber [−][src]
pub enum SectionNumber {
UserCommands,
SystemCalls,
LibraryCalls,
Devices,
FileFormatsAndConfigurationFiles,
Games,
Miscellaneous,
SystemManagementCommands,
Custom(u8),
}Expand description
Defines the section to which the given ROFF belongs.
Variants
Commands that can be executed by the user from within a shell.
Functions which wrap operations performed by the kernel.
All library functions excluding the system call wrappers (Most of the libc functions).
Files found in /dev which allow to access to devices through the kernel.
Describes various human-readable file formats and configuration files.
Games and funny little programs available on the system.
Overviews or descriptions of various topics, conventions, and protocols, character set standards, the standard filesystem layout, and miscellaneous other things.
Commands like mount(8), many of which only root can execute.
A custom section number.
Tuple Fields of Custom
0: u8Trait Implementations
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SectionNumber
impl Send for SectionNumber
impl Sync for SectionNumber
impl Unpin for SectionNumber
impl UnwindSafe for SectionNumber
Blanket Implementations
Mutably borrows from an owned value. Read more