pub trait SpaInterface: RawWrapper {
    type Methods;

    // Required method
    fn spa_interface(&self) -> &InterfaceRef;

    // Provided method
    fn version(&self) -> u32 { ... }
}
Expand description

Provides support for spa_sys::spa_interface methods. spa_interface_call can used to call the methods

Required Associated Types§

source

type Methods

spa_sys::spa_interface methods structure

Required Methods§

source

fn spa_interface(&self) -> &InterfaceRef

Interface wrapper

Provided Methods§

source

fn version(&self) -> u32

Interface version

Implementors§