[][src]Enum glerminal::text_processing::Processable

pub enum Processable {
    ToProcess(String),
    NoProcess(String),
}

A string that can be given for a TextProcessor.

Variants

ToProcess(String)

A String that will be processed when given to a processor

NoProcess(String)

A String that will be not be processed when given to a processor, meaning the processor will keep it's previously determined style and insert only the chars

Trait Implementations

impl From<String> for Processable
[src]

impl From<&'static str> for Processable
[src]

Auto Trait Implementations

impl Send for Processable

impl Sync for Processable

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.