Enum lrs::file::DeviceType

The type of a device.

Syntax

enum DeviceType {
    Block,
    Character,
}

Variants

NameDescription
Block

a block device.

Character

A character device.

Trait implementations

NameDescription
Clone

Objects that can be duplicated.

Copy

Objects that can safely be copied via memcpy.

Debug

Objects that can be formatted in a "debug" form.

Eq

Objects that implement the binary == and != operators.

MaybeClone

Objects that can be duplicated.