Trait Backoff

Source
pub trait Backoff<FPGA> {
    // Required method
    fn backoff(fpga: &mut FPGA, offset: usize);
}
Expand description

App-specific backoff mechanism used in streaming.

Required Methods§

Source

fn backoff(fpga: &mut FPGA, offset: usize)

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.

Implementors§

Source§

impl<F> Backoff<F> for Backoff