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
fn from_tab_separated_str(s: &str) -> Result<Self, ParseError> where Self: Sized
Returns an instance of Self
from a tab-separated string slice
or a ParseError
if a failure occurs while parsing the string.
Implementors
impl FromTabSeparatedStr for DatabaseError
impl FromTabSeparatedStr for ErrorKind
impl FromTabSeparatedStr for Event