Enum rug::integer::Order [] [src]

pub enum Order {
    Lsf,
    LsfLe,
    LsfBe,
    Msf,
    MsfLe,
    MsfBe,
}

The ordering of digits inside a slice, and bytes inside a digit.

Examples

use rug::Integer;
use rug::integer::Order;

let i = Integer::from(0x0102_0304);
let mut buf: [u16; 4] = [0; 4];

// most significant 16-bit digit first, little endian digits
i.write_digits(&mut buf, Order::MsfLe);
assert_eq!(buf, [0, 0, 0x0102u16.to_le(), 0x0304u16.to_le()]);
// least significant 16-bit digit first, big endian digits
i.write_digits(&mut buf, Order::LsfBe);
assert_eq!(buf, [0x0304u16.to_be(), 0x0102u16.to_be(), 0, 0]);

Variants

Least significant digit first, with each digit in the target’s endianness.

Least significant digit first, with little endian digits.

Least significant digit first, with big endian digits.

Most significant digit first, with each digit in the target’s endianness.

Most significant digit first, with little endian digits.

Most significant digit first, with big endian digits.

Trait Implementations

impl Clone for Order
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Order
[src]

impl Debug for Order
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for Order
[src]

impl Hash for Order
[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 Ord for Order
[src]

[src]

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

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialEq for Order
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl PartialOrd for Order
[src]

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

Auto Trait Implementations

impl Send for Order

impl Sync for Order