[][src]Struct ucglib::io::StatementAccumulator

pub struct StatementAccumulator { /* fields omitted */ }

Accumulates lines and tells you when a ucg Statement has been read.

Methods

impl StatementAccumulator[src]

pub fn new() -> Self[src]

Constructs a StatementAccumulator ready for use.

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

Tells you if the latest line ends in the statement terminator.

Returns None if it wasn't a terminated statement and leaves the accumulated lines alone.

Returns Some(String) with the terminated statement if it was a terminated statement and drains the accumulated statements out.

pub fn push<S: Into<String>>(&mut self, line: S)[src]

Pushes a line into the Statement Accumulator. Assumes that the new line has already been trimmed. get_statement will reintroduce the new lines.

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, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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