Skip to main content

BoundPair

Trait BoundPair 

Source
pub trait BoundPair: Sized {
    type T;
    type E;
}

Required Associated Types§

Source

type T

Source

type E

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T, E> BoundPair for (T, E)

Source§

type T = T

Source§

type E = E

Implementors§