pub enum CMapEntry {
Single {
src: Vec<u8>,
dst: Vec<u8>,
},
Range {
src_start: Vec<u8>,
src_end: Vec<u8>,
dst_start: Vec<u8>,
},
}Expand description
CMap mapping entry
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CMapEntry
impl RefUnwindSafe for CMapEntry
impl Send for CMapEntry
impl Sync for CMapEntry
impl Unpin for CMapEntry
impl UnsafeUnpin for CMapEntry
impl UnwindSafe for CMapEntry
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