WordSet

Trait WordSet 

Source
pub trait WordSet: Sized {
    // Required method
    fn subset(self) -> impl Iterator<Item = Self>;
}

Required Methods§

Source

fn subset(self) -> impl Iterator<Item = Self>

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 WordSet for u8

Source§

fn subset(self) -> impl Iterator<Item = u8>

Source§

impl WordSet for u16

Source§

fn subset(self) -> impl Iterator<Item = u16>

Source§

impl WordSet for u32

Source§

fn subset(self) -> impl Iterator<Item = u32>

Source§

impl WordSet for u64

Source§

fn subset(self) -> impl Iterator<Item = u64>

Source§

impl WordSet for u128

Source§

fn subset(self) -> impl Iterator<Item = u128>

Source§

impl WordSet for usize

Source§

fn subset(self) -> impl Iterator<Item = usize>

Implementors§