Enum union_find::UnionResult [] [src]

pub enum UnionResult<T> {
    Left(T),
    Right(T),
}

Return value of the Union::merge.

Variants

Trait Implementations

impl<T: Copy> Copy for UnionResult<T>
[src]

impl<T: Clone> Clone for UnionResult<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for UnionResult<T>
[src]

Formats the value using the given formatter.