ValidatedLogline

Type Alias ValidatedLogline 

Source
pub type ValidatedLogline = Logline<Validated>;
Available on crate feature time only.

Aliased Type§

pub struct ValidatedLogline { /* private fields */ }

Trait Implementations§

Source§

impl TryFrom<&str> for ValidatedLogline

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 ValidatedLogline

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 ValidatedLogline

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 ValidatedLogline

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.