[][src]Trait oboe::IsFrameType

pub trait IsFrameType {
    type Type;
    type Format: IsFormat;
    type ChannelCount: IsChannelCount;
}

The trait for frame type marker types

Associated Types

Loading content...

Implementations on Foreign Types

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

type Type = AltFrame<T>

type Format = T

type ChannelCount = Unspecified

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

type Type = T

type Format = T

type ChannelCount = Mono

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

type Type = (T, T)

type Format = T

type ChannelCount = Stereo

Loading content...

Implementors

Loading content...