Enum sparse_bitfield::Change[][src]

pub enum Change {
    Changed,
    Unchanged,
}

Determine wether the bitfield.set() method changed the underlying value.

Variants

The value was changed. Equal to true in mafintosh/sparse-bitfield.

The value was not changed. Equal to false in mafintosh/sparse-bitfield.

Methods

impl Change
[src]

Returns true if the result is Changed.

Returns true if the result is Unchanged.

Trait Implementations

impl Debug for Change
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Change
[src]

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

This method tests for !=.

Auto Trait Implementations

impl Send for Change

impl Sync for Change