Trait burn_common::reader::SyncReader

source ·
pub trait SyncReader<T>: Send {
    // Required method
    fn read(self: Box<Self>) -> T;
}
Expand description

Allows to create sync reader.

Required Methods§

source

fn read(self: Box<Self>) -> T

Read synchronously.

Implementors§