rust_script_ext::prelude

Trait Format

Source
pub trait Format {
    type Output<T>;
    type Input<T>: ?Sized;

    // Required methods
    fn deserialise<T>(rdr: &mut dyn Read) -> Result<Self::Output<T>>
       where for<'de> T: Deserialize<'de>;
    fn serialise<T>(wtr: &mut dyn Write, val: &Self::Input<T>) -> Result<()>
       where T: Serialize;
}
Expand description

Defines a structured format which can be used with ReadAs/WriteAs.

A format needs to describe (de)serialisation mechanism, along with the input/output types. Note the use of GATs, this can be leveraged to work with containerised types.

Required Associated Types§

Source

type Output<T>

The resulting type after deserialisation.

Source

type Input<T>: ?Sized

The input for serialisation.

Note that this is passed through as a reference to serialise.

Required Methods§

Source

fn deserialise<T>(rdr: &mut dyn Read) -> Result<Self::Output<T>>
where for<'de> T: Deserialize<'de>,

Deserialise from rdr into Output.

Source

fn serialise<T>(wtr: &mut dyn Write, val: &Self::Input<T>) -> Result<()>
where T: Serialize,

Serialise val into wtr.

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 Format for CSV

Source§

type Output<T> = Vec<T>

Source§

type Input<T> = [T]

Source§

impl Format for JSON

Source§

type Output<T> = T

Source§

type Input<T> = T

Source§

impl Format for TOML

Source§

type Output<T> = T

Source§

type Input<T> = T