pub trait Direction: DirectionImpl {
    const IN: bool;
    const OUT: bool;

    // Required method
    fn buffer_type(content: ContentType) -> BufferType;
}
Expand description

Direction types

Required Associated Constants§

Required Methods§

Implementors§

source§

impl Direction for In

source§

const IN: bool = true

source§

const OUT: bool = false

source§

impl Direction for Out

source§

const IN: bool = false

source§

const OUT: bool = true