Trait oboe::IsFrameType

source ·
pub trait IsFrameType {
    type Type;
    type Format: IsFormat;
    type ChannelCount: IsChannelCount;
}
Expand description

The trait for frame type marker types

Required Associated Types§

Implementations on Foreign Types§

source§

impl<T: IsFormat> IsFrameType for (T, Mono)

§

type Type = T

§

type Format = T

§

type ChannelCount = Mono

source§

impl<T: IsFormat> IsFrameType for (T, Stereo)

source§

impl<T: IsFormat> IsFrameType for (T, Unspecified)

Implementors§