Struct devicemapper::Device [] [src]

pub struct Device {
    pub major: u32,
    pub minor: u32,
}

A struct containing the device's major and minor numbers

Also allows conversion to/from a single 64bit dev_t value.

Fields

Device major number

Device minor number

Methods

impl Device
[src]

The Linux kernel's kdev_t encodes major/minor values as mmmM MMmm.

[src]

Make a Device from a kdev_t.

[src]

Convert to a kdev_t. Return None if values are not expressible as a kdev_t.

Trait Implementations

impl Debug for Device
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for Device
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for Device
[src]

impl Clone for Device
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Device
[src]

impl Hash for Device
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for Device
[src]

Display format is the device number in ":" format

[src]

Formats the value using the given formatter. Read more

impl From<dev_t> for Device
[src]

[src]

Performs the conversion.