pub struct Property {
pub codepoints: Codepoints,
pub property: String,
}
Expand description
A single row in the PropList.txt
file.
The PropList.txt
file is the source of truth on several Unicode
properties.
Fields§
§codepoints: Codepoints
The codepoint or codepoint range for this entry.
property: String
The property name assigned to the codepoints in this entry.
Trait Implementations§
Source§impl UcdFile for Property
impl UcdFile for Property
Source§impl UcdFileByCodepoint for Property
impl UcdFileByCodepoint for Property
Source§fn codepoints(&self) -> CodepointIter ⓘ
fn codepoints(&self) -> CodepointIter ⓘ
Returns the codepoints associated with this record.
impl Eq for Property
impl StructuralPartialEq for Property
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnwindSafe for Property
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