UnvalidatedLogline

Type Alias UnvalidatedLogline 

Source
pub type UnvalidatedLogline = Logline<Unvalidated>;
Available on crate feature parquet only.

Aliased Type§

pub struct UnvalidatedLogline { /* private fields */ }

Trait Implementations§

Source§

impl TryFrom<&str> for UnvalidatedLogline

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(line: &str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Arc<str>> for UnvalidatedLogline

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(line: Arc<str>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<Box<str>> for UnvalidatedLogline

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(line: Box<str>) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<String> for UnvalidatedLogline

Source§

type Error = &'static str

The type returned in the event of a conversion error.
Source§

fn try_from(line: String) -> Result<Self, Self::Error>

Performs the conversion.