pub enum MorseSignal {
Short,
Long,
}
Expand description
Building block of morse characters.
This enum can be used with the decoder to directly add signals to characters.
Variants§
Trait Implementations§
Source§impl Clone for MorseSignal
impl Clone for MorseSignal
Source§fn clone(&self) -> MorseSignal
fn clone(&self) -> MorseSignal
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MorseSignal
impl Debug for MorseSignal
Source§impl PartialEq for MorseSignal
impl PartialEq for MorseSignal
impl StructuralPartialEq for MorseSignal
Auto Trait Implementations§
impl Freeze for MorseSignal
impl RefUnwindSafe for MorseSignal
impl Send for MorseSignal
impl Sync for MorseSignal
impl Unpin for MorseSignal
impl UnwindSafe for MorseSignal
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more