Enum hash_trie::SetJointTransformResult[][src]

pub enum SetJointTransformResult<ReduceT> {
    UnchangedLR(ReduceT),
    UnchangedL(ReduceT),
    UnchangedR(ReduceT),
    Removed(ReduceT),
}
Expand description

SetJointTransformResult is the result of a transform operation on a pair of entries of a set.

Variants

UnchangedLR(ReduceT)

The value is unchanged from both left and right.

UnchangedL(ReduceT)

The value is unchanged from the left.

UnchangedR(ReduceT)

The value is unchanged from the right.

Removed(ReduceT)

The value was removed.

Trait Implementations

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.