pub trait TapsAccessor: Send {
    type TapType;

    fn num_taps(&self) -> usize;
    unsafe fn get(&self, index: usize) -> Self::TapType;
}

Required Associated Types

Required Methods

Gets the indexth tap.

Safety

The invariant index < num_taps() must be upheld.

Implementations on Foreign Types

Implementors