pub struct EncodingDifference {
pub code: u8,
pub names: Vec<String>,
}Expand description
Encoding difference entry
Fields§
§code: u8Starting character code
names: Vec<String>Glyph names for consecutive character codes
Trait Implementations§
Source§impl Clone for EncodingDifference
impl Clone for EncodingDifference
Source§fn clone(&self) -> EncodingDifference
fn clone(&self) -> EncodingDifference
Returns a duplicate 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 EncodingDifference
impl Debug for EncodingDifference
Source§impl PartialEq for EncodingDifference
impl PartialEq for EncodingDifference
impl StructuralPartialEq for EncodingDifference
Auto Trait Implementations§
impl Freeze for EncodingDifference
impl RefUnwindSafe for EncodingDifference
impl Send for EncodingDifference
impl Sync for EncodingDifference
impl Unpin for EncodingDifference
impl UnwindSafe for EncodingDifference
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