[][src]Struct mors::encoder::Encoder

pub struct Encoder { /* fields omitted */ }

Structure for the encoding of a lettered string into a morse sequence. Is creating a new instance of the codec, when created. Should be reused.

Methods

impl Encoder[src]

pub fn new() -> Encoder[src]

init a new encoder, that is creating a new codec, for the morse coder.

pub fn encode_letters(&self, letter_sequence: String) -> String[src]

encode a lettered message into a sequence of morse code

Example

let encoder = encoder::Encoder::new();
let message = encoder.encode_letters(String::from("ET"));
mesage ==> ". -"

Auto Trait Implementations

impl Sync for Encoder

impl Unpin for Encoder

impl Send for Encoder

impl UnwindSafe for Encoder

impl RefUnwindSafe for Encoder

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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