Struct devicemapper::Device [] [src]

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

A struct containing the device's major and minor numbers

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

Fields

Device major number

Device minor number

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<u64> for Device
[src]

[src]

Performs the conversion.