Struct burn::record::NamedMpkGzFileRecorder
pub struct NamedMpkGzFileRecorder<S>where
S: PrecisionSettings,{ /* private fields */ }
Expand description
File recorder using the named msgpack format compressed with gzip.
Implementations§
§impl<S> NamedMpkGzFileRecorder<S>where
S: PrecisionSettings,
impl<S> NamedMpkGzFileRecorder<S>where
S: PrecisionSettings,
pub fn new() -> NamedMpkGzFileRecorder<S>
pub fn new() -> NamedMpkGzFileRecorder<S>
Constructs a new NamedMpkGzFileRecorder
.
Trait Implementations§
§impl<S> Clone for NamedMpkGzFileRecorder<S>where
S: Clone + PrecisionSettings,
impl<S> Clone for NamedMpkGzFileRecorder<S>where
S: Clone + PrecisionSettings,
§fn clone(&self) -> NamedMpkGzFileRecorder<S>
fn clone(&self) -> NamedMpkGzFileRecorder<S>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl<S> Debug for NamedMpkGzFileRecorder<S>where
S: Debug + PrecisionSettings,
impl<S> Debug for NamedMpkGzFileRecorder<S>where
S: Debug + PrecisionSettings,
§impl<S> Default for NamedMpkGzFileRecorder<S>where
S: Default + PrecisionSettings,
impl<S> Default for NamedMpkGzFileRecorder<S>where
S: Default + PrecisionSettings,
§fn default() -> NamedMpkGzFileRecorder<S>
fn default() -> NamedMpkGzFileRecorder<S>
Returns the “default value” for a type. Read more
§impl<S, B> FileRecorder<B> for NamedMpkGzFileRecorder<S>where
S: PrecisionSettings,
B: Backend,
impl<S, B> FileRecorder<B> for NamedMpkGzFileRecorder<S>where
S: PrecisionSettings,
B: Backend,
§fn file_extension() -> &'static str
fn file_extension() -> &'static str
File extension of the format used by the recorder.
§impl<S, B> Recorder<B> for NamedMpkGzFileRecorder<S>where
S: PrecisionSettings,
B: Backend,
impl<S, B> Recorder<B> for NamedMpkGzFileRecorder<S>where
S: PrecisionSettings,
B: Backend,
§type RecordArgs = PathBuf
type RecordArgs = PathBuf
Arguments used to record objects.
§type RecordOutput = ()
type RecordOutput = ()
Record output type.
§fn save_item<I>(
&self,
item: I,
file: <NamedMpkGzFileRecorder<S> as Recorder<B>>::RecordArgs,
) -> Result<(), RecorderError>where
I: Serialize,
fn save_item<I>(
&self,
item: I,
file: <NamedMpkGzFileRecorder<S> as Recorder<B>>::RecordArgs,
) -> Result<(), RecorderError>where
I: Serialize,
Saves an item. Read more
§fn load_item<I>(
&self,
file: <NamedMpkGzFileRecorder<S> as Recorder<B>>::LoadArgs,
) -> Result<I, RecorderError>where
I: DeserializeOwned,
fn load_item<I>(
&self,
file: <NamedMpkGzFileRecorder<S> as Recorder<B>>::LoadArgs,
) -> Result<I, RecorderError>where
I: DeserializeOwned,
Loads an item. Read more
§fn record<R>(
&self,
record: R,
args: Self::RecordArgs,
) -> Result<Self::RecordOutput, RecorderError>where
R: Record<B>,
fn record<R>(
&self,
record: R,
args: Self::RecordArgs,
) -> Result<Self::RecordOutput, RecorderError>where
R: Record<B>,
Records an item. Read more
Auto Trait Implementations§
impl<S> Freeze for NamedMpkGzFileRecorder<S>
impl<S> RefUnwindSafe for NamedMpkGzFileRecorder<S>where
S: RefUnwindSafe,
impl<S> Send for NamedMpkGzFileRecorder<S>
impl<S> Sync for NamedMpkGzFileRecorder<S>
impl<S> Unpin for NamedMpkGzFileRecorder<S>where
S: Unpin,
impl<S> UnwindSafe for NamedMpkGzFileRecorder<S>where
S: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.