Trait Indexes

Source
pub trait Indexes {
    // Required method
    fn into_indexes(self) -> Vec<usize>;
}
Expand description

Used for IndexedField. An array, slice, Vec of, or single usize.

See also: Element::new_indexed_field, Path::new_indexed_field

Required Methods§

Implementations on Foreign Types§

Source§

impl Indexes for &[usize]

Source§

impl Indexes for usize

Source§

impl Indexes for Vec<usize>

Source§

impl<const N: usize> Indexes for &[usize; N]

Source§

impl<const N: usize> Indexes for [usize; N]

Implementors§