Enum flep_protocol::reply::Text [] [src]

pub enum Text {
    SingleLine(String),
    MultiLine(Vec<String>),
}

Reply text.

Variants

The reply is only a single line of text.

The reply is multiple lines of text.

Trait Implementations

impl Clone for Text
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Text
[src]

Formats the value using the given formatter.

impl PartialEq for Text
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Text
[src]

impl From<String> for Text
[src]

Performs the conversion.

impl Display for Text
[src]

Formats the value using the given formatter. Read more