enum Iso2022JpDecoderState {
Ascii,
Roman,
Katakana,
LeadByte,
TrailByte,
EscapeStart,
Escape,
}
Variants§
Trait Implementations§
source§impl Clone for Iso2022JpDecoderState
impl Clone for Iso2022JpDecoderState
source§fn clone(&self) -> Iso2022JpDecoderState
fn clone(&self) -> Iso2022JpDecoderState
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 PartialEq for Iso2022JpDecoderState
impl PartialEq for Iso2022JpDecoderState
source§fn eq(&self, other: &Iso2022JpDecoderState) -> bool
fn eq(&self, other: &Iso2022JpDecoderState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for Iso2022JpDecoderState
impl StructuralPartialEq for Iso2022JpDecoderState
Auto Trait Implementations§
impl Freeze for Iso2022JpDecoderState
impl RefUnwindSafe for Iso2022JpDecoderState
impl Send for Iso2022JpDecoderState
impl Sync for Iso2022JpDecoderState
impl Unpin for Iso2022JpDecoderState
impl UnwindSafe for Iso2022JpDecoderState
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