Struct guid_parser::u48 [] [src]

pub struct u48 {
    pub hi: u16,
    pub lo: u32,
}

A 48-bit unsigned integer.

Fields

The high-order 16 bits of the integer.

The low-order 32 bits of the integer.

Methods

impl u48
[src]

[src]

Non-lossy cast of a 48-bit unsigned integer to a 64-bit unsigned integer.

assert_eq!(u48 { hi: 0xf00d, lo: 0xdeadbeef }.to_u64(), 0xf00ddeadbeef);

Trait Implementations

impl Eq for u48
[src]

impl PartialEq for u48
[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 Ord for u48
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd for u48
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for u48
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for u48
[src]

impl Debug for u48
[src]

[src]

Formats the value using the given formatter.