pub enum Transcoder {
Id,
Forward(&'static ForwardMap),
Reverse(&'static ReverseMap),
Both(&'static ForwardMap, &'static ReverseMap),
}
Variants§
Id
Forward(&'static ForwardMap)
Reverse(&'static ReverseMap)
Both(&'static ForwardMap, &'static ReverseMap)
Implementations§
Auto Trait Implementations§
impl Freeze for Transcoder
impl RefUnwindSafe for Transcoder
impl Send for Transcoder
impl Sync for Transcoder
impl Unpin for Transcoder
impl UnwindSafe for Transcoder
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