[][src]Struct vojaq_parser::VojaqLine

pub struct VojaqLine { /* fields omitted */ }

A Vojaq line is an "array" of Vojaq fields.

The text representation of a Vojaq line is a series of Vojaq fields. One field in two must be enclosed between curly braces.

the first | field {the second field} the | third | field

Methods

impl VojaqLine[src]

pub fn new() -> VojaqLine[src]

pub fn fields(&self) -> &Vec<VojaqField>[src]

pub fn push(&mut self, field: VojaqField)[src]

pub fn push_if_not_empty(&mut self, field: VojaqField)[src]

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

pub fn get(&self, field_index: usize) -> Option<&VojaqField>[src]

Trait Implementations

impl Eq for VojaqLine[src]

impl PartialEq<VojaqLine> for VojaqLine[src]

impl Debug for VojaqLine[src]

Auto Trait Implementations

impl Send for VojaqLine

impl Sync for VojaqLine

Blanket Implementations

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

impl<T> From<T> for 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> 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]