pub struct Codepoint {
pub uni: char,
pub eq_type: EquivalenceType,
pub bytestring: Vec<u8>,
}Expand description
This represents a CHARMAP row in a .ucm (UniCode Mapping) file.
Fields§
§uni: char§eq_type: EquivalenceType§bytestring: Vec<u8>Trait Implementations§
impl StructuralPartialEq for Codepoint
Auto Trait Implementations§
impl Freeze for Codepoint
impl RefUnwindSafe for Codepoint
impl Send for Codepoint
impl Sync for Codepoint
impl Unpin for Codepoint
impl UnwindSafe for Codepoint
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