Enum hash_trie::MapTransmuteResult[][src]

pub enum MapTransmuteResult<K, V, ReduceT> {
    Transmuted(K, V, ReduceT),
    Removed(ReduceT),
}
Expand description

MapTransmuteResult is the result of a transmute operation on a single entry of a map or a pair of entries of a map.

Variants

Transmuted(K, V, ReduceT)

The value has been transmuted.

Removed(ReduceT)

The key-value pair was removed.

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.