Trait jack::PortSpec [] [src]

pub unsafe trait PortSpec: Default + Sized {
    fn jack_port_type(&self) -> &'static str;
    fn jack_flags(&self) -> PortFlags;
    fn jack_buffer_size(&self) -> c_ulong;
}

Represents the data of a Port within a JackHandler::process callback.

Required Methods

String used by JACK upon port creation to identify the port type.

Flags used by jack upon port creation.

Size used by jack upon port creation.

Implementors