Trait corollary_support::ReadS [] [src]

pub trait ReadS<A> {
    fn read_s(&self) -> Vec<(A, String)>;

    fn map<F: Fn((isize, String)) -> (isize, String)>(self, f: F) -> Self
    where
        Self: Sized
, { ... } }

Required Methods

Provided Methods

Trait Implementations

impl<A> Display for ReadS<A>
[src]

Formats the value using the given formatter. Read more

Implementors