pub enum AlphabetError {
NonAscii(u8),
Duplicate {
character: u8,
first: usize,
second: usize,
},
}Variants§
Trait Implementations§
Source§impl Clone for AlphabetError
impl Clone for AlphabetError
Source§fn clone(&self) -> AlphabetError
fn clone(&self) -> AlphabetError
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 AlphabetError
impl Debug for AlphabetError
Source§impl Hash for AlphabetError
impl Hash for AlphabetError
Source§impl PartialEq for AlphabetError
impl PartialEq for AlphabetError
impl Copy for AlphabetError
impl Eq for AlphabetError
impl StructuralPartialEq for AlphabetError
Auto Trait Implementations§
impl Freeze for AlphabetError
impl RefUnwindSafe for AlphabetError
impl Send for AlphabetError
impl Sync for AlphabetError
impl Unpin for AlphabetError
impl UnwindSafe for AlphabetError
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