Trait PickIndex

Source
pub trait PickIndex {
    type Output: Copy;

    // Required method
    fn _sealed(_: Sealed);
}

Required Associated Types§

Required Methods§

Source

fn _sealed(_: Sealed)

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 PickIndex for (False, False, False, False, False)

Source§

impl PickIndex for (False, False, False, False, True)

Source§

type Output = u32

Source§

fn _sealed(_: Sealed)

Source§

impl PickIndex for (False, False, False, True, True)

Source§

type Output = u16

Source§

fn _sealed(_: Sealed)

Source§

impl PickIndex for (False, False, True, True, True)

Source§

type Output = u8

Source§

fn _sealed(_: Sealed)

Source§

impl PickIndex for (False, True, True, True, True)

Source§

type Output = bool

Source§

fn _sealed(_: Sealed)

Source§

impl PickIndex for (True, True, True, True, True)

Source§

type Output = ()

Source§

fn _sealed(_: Sealed)

Implementors§