Trait CsvParseResult

Source
pub trait CsvParseResult<P, T> {
    // Required methods
    fn new(payload_inner: T) -> Self;
    fn into_payload(self) -> P;
}

Required Methods§

Source

fn new(payload_inner: T) -> Self

Source

fn into_payload(self) -> P

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§