[][src]Struct readfilter::CommentStrip

pub struct CommentStrip<T> where
    T: Read
{ /* fields omitted */ }

Removes comments from the wrapped stream.

A comment starts with # and ends with a newline \n or the end of file.

use readfilter::CommentStrip;
use std::io::Read;
let mut input = CommentStrip::new("a\nb# foo\nc#bar".as_bytes());
let mut output = String::new();
input.read_to_string(&mut output);
assert_eq!(output, "a\nbc");

Methods

impl<T> CommentStrip<T> where
    T: Read
[src]

pub fn new(source: T) -> Self[src]

Trait Implementations

impl<T> Read for CommentStrip<T> where
    T: Read
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for CommentStrip<T> where
    T: RefUnwindSafe

impl<T> Send for CommentStrip<T> where
    T: Send

impl<T> Sync for CommentStrip<T> where
    T: Sync

impl<T> Unpin for CommentStrip<T> where
    T: Unpin

impl<T> UnwindSafe for CommentStrip<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.