Trait Thread

Source
pub trait Thread {
    // Required methods
    fn init() -> Self;
    fn take_actual(&self) -> Records;
}

Required Methods§

Source

fn init() -> Self

Source

fn take_actual(&self) -> Records

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§