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 PartialEq for Property
impl PartialEq for Property
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 StructuralEq for Property
impl StructuralPartialEq for Property
Auto Trait Implementations§
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