Trait Latency

Source
pub trait Latency<P>
where P: Plugin,
{ // Required method fn get(plugin: &P) -> u32; }

Required Methods§

Source

fn get(plugin: &P) -> u32

Return the plugin latency in samples.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<P: Plugin> Latency<P> for ()

Source§

fn get(_: &P) -> u32

Implementors§