/*!
This crate provides a library for encoding and decoding morse code
This crate's documentation provides some simple examples on how to use it.
*/#![deny(missing_docs)]/// The structure that is returned if the encode or decode functions failed.
#[derive(Debug)]pubstructTranslationError{/// Vec of all unsupported characters causing the error.
pubunsupported_characters:Vec<String>,
/// The completed parse result. Failed characters have been replaced by `#`
pubresult: String,
}pubmodencode;pubmoddecode;