burn::record

Type Alias NoStdInferenceRecorder

pub type NoStdInferenceRecorder = BinBytesRecorder<FullPrecisionSettings>;
Expand description

Inference recorder compatible with no-std.

Aliased Type§

struct NoStdInferenceRecorder { /* private fields */ }

Implementations

§

impl<S> BinBytesRecorder<S>

pub fn new() -> BinBytesRecorder<S>

Constructs a new BinBytesRecorder.

Trait Implementations

§

impl<S> Clone for BinBytesRecorder<S>

§

fn clone(&self) -> BinBytesRecorder<S>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<S> Debug for BinBytesRecorder<S>

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<S> Default for BinBytesRecorder<S>

§

fn default() -> BinBytesRecorder<S>

Returns the “default value” for a type. Read more
§

impl<S, B> Recorder<B> for BinBytesRecorder<S>

§

type Settings = S

Type of the settings used by the recorder.
§

type RecordArgs = ()

Arguments used to record objects.
§

type RecordOutput = Vec<u8>

Record output type.
§

type LoadArgs = Vec<u8>

Arguments used to load recorded objects.
§

fn save_item<I>( &self, item: I, _args: <BinBytesRecorder<S> as Recorder<B>>::RecordArgs, ) -> Result<<BinBytesRecorder<S> as Recorder<B>>::RecordOutput, RecorderError>
where I: Serialize,

Saves an item. Read more
§

fn load_item<I>( &self, args: <BinBytesRecorder<S> as Recorder<B>>::LoadArgs, ) -> Result<I, RecorderError>

Loads an item. Read more
§

fn record<R>( &self, record: R, args: Self::RecordArgs, ) -> Result<Self::RecordOutput, RecorderError>
where R: Record<B>,

Records an item. Read more
§

fn load<R>( &self, args: Self::LoadArgs, device: &<B as Backend>::Device, ) -> Result<R, RecorderError>
where R: Record<B>,

Load an item from the given arguments.
§

impl<S, B> BytesRecorder<B> for BinBytesRecorder<S>