Trait exar::FromTabSeparatedStr [] [src]

pub trait FromTabSeparatedStr {
    fn from_tab_separated_str(s: &str) -> Result<Self, ParseError>
    where
        Self: Sized
; }

A trait for deserializing a type from a tab-separated string slice.

Required Methods

Returns an instance of Self from a tab-separated string slice or a ParseError if a failure occurs while parsing the string.

Implementors