Struct morse::TranslationError [] [src]

pub struct TranslationError {
    pub unsupported_characters: Vec<String>,
    pub result: String,
}

The structure that is returned if the encode or decode functions failed.

Fields

Vec of all unsupported characters causing the error.

The completed parse result. Failed characters have been replaced by #

Trait Implementations

impl Debug for TranslationError
[src]

Formats the value using the given formatter.