[][src]Struct hosts_parser::HostsFileLine

pub struct HostsFileLine { /* fields omitted */ }

Methods

impl HostsFileLine[src]

pub fn from_empty() -> HostsFileLine[src]

pub fn from_comment(c: &str) -> HostsFileLine[src]

pub fn from_string(line: &str) -> Result<HostsFileLine, ParseError>[src]

pub fn ip(&self) -> Option<String>[src]

pub fn hosts(&self) -> Vec<String>[src]

pub fn comment(&self) -> Option<String>[src]

pub fn has_host(&self) -> bool[src]

pub fn has_comment(&self) -> bool[src]

Trait Implementations

impl Eq for HostsFileLine[src]

impl PartialEq<HostsFileLine> for HostsFileLine[src]

impl Debug for HostsFileLine[src]

impl Display for HostsFileLine[src]

impl FromStr for HostsFileLine[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl StructuralPartialEq for HostsFileLine[src]

impl StructuralEq for HostsFileLine[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]