Trait tool::sequence::Empty[][src]

pub trait Empty { }

A sequence with no items.

If you ever find a use for this, please submit a PR with an example.

Implementations on Foreign Types

impl Empty for ()
[src]

impl<'a> Empty for &'a ()
[src]

impl<'a> Empty for &'a mut ()
[src]

impl<'a, T> Empty for &'a [T; 0]
[src]

impl<'a, T> Empty for &'a mut [T; 0]
[src]

Implementors