Files
GopherGate/target/doc/icu_properties/props/trait.EnumeratedProperty.html
2026-02-26 12:00:21 -05:00

18 lines
30 KiB
HTML

<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="A Unicode character property that assigns a value to each code point."><title>EnumeratedProperty in icu_properties::props - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Italic-81dc35de.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-MediumItalic-ccf7e434.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2"href="../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../../static.files/rustdoc-ca0dd0c4.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="icu_properties" data-themes="" data-resource-suffix="" data-rustdoc-version="1.93.1 (01f6ddf75 2026-02-11) (Arch Linux rust 1:1.93.1-1)" data-channel="1.93.1" data-search-js="search-9e2438ea.js" data-stringdex-js="stringdex-a3946164.js" data-settings-js="settings-c38705f0.js" ><script src="../../static.files/storage-e2aeef58.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-a410ff4d.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-263c88ec.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-eab170b8.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-044be391.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><rustdoc-topbar><h2><a href="#">EnumeratedProperty</a></h2></rustdoc-topbar><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../icu_properties/index.html">icu_<wbr>properties</a><span class="version">2.1.2</span></h2></div><div class="sidebar-elems"><section id="rustdoc-toc"><h2 class="location"><a href="#">Enumerated<wbr>Property</a></h2><h3><a href="#required-associated-consts">Required Associated Constants</a></h3><ul class="block"><li><a href="#associatedconstant.NAME" title="NAME">NAME</a></li><li><a href="#associatedconstant.SHORT_NAME" title="SHORT_NAME">SHORT_NAME</a></li></ul><h3><a href="#provided-methods">Provided Methods</a></h3><ul class="block"><li><a href="#method.for_char" title="for_char">for_char</a></li></ul><h3><a href="#dyn-compatibility">Dyn Compatibility</a></h3><h3><a href="#implementors">Implementors</a></h3></section><div id="rustdoc-modnav"><h2><a href="index.html">In icu_<wbr>properties::<wbr>props</a></h2></div></div></nav><div class="sidebar-resizer" title="Drag to resize sidebar"></div><main><div class="width-limiter"><section id="main-content" class="content"><div class="main-heading"><div class="rustdoc-breadcrumbs"><a href="../index.html">icu_properties</a>::<wbr><a href="index.html">props</a></div><h1>Trait <span class="trait">Enumerated<wbr>Property</span>&nbsp;<button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><a class="src" href="../../src/icu_properties/code_point_map.rs.html#379-397">Source</a> </span></div><pre class="rust item-decl"><code>pub trait EnumeratedProperty: Sealed + <a class="trait" href="../../icu_collections/codepointtrie/cptrie/trait.TrieValue.html" title="trait icu_collections::codepointtrie::cptrie::TrieValue">TrieValue</a> {
const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>];
const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>];
// Provided method
fn <a href="#method.for_char" class="fn">for_char</a>(ch: <a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.char.html">char</a>) -&gt; Self { ... }
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A Unicode character property that assigns a value to each code point.</p>
<p>The descriptions of most properties are taken from <a href="https://www.unicode.org/reports/tr44"><code>TR44</code></a>, the documentation for the
Unicode Character Database.</p>
<div class="stab unstable">
🚫 This trait is sealed; it cannot be implemented by user code. If an API requests an item that implements this
trait, please consider using a type from the implementors listed below.
</div>
</div></details><h2 id="required-associated-consts" class="section-header">Required Associated Constants<a href="#required-associated-consts" class="anchor">§</a></h2><div class="methods"><details class="toggle" open><summary><section id="associatedconstant.NAME" class="method"><a class="src rightside" href="../../src/icu_properties/code_point_map.rs.html#386">Source</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></summary><div class="docblock"><p>The name of this property</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.SHORT_NAME" class="method"><a class="src rightside" href="../../src/icu_properties/code_point_map.rs.html#388">Source</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></summary><div class="docblock"><p>The abbreviated name of this property, if it exists, otherwise the name</p>
</div></details></div><h2 id="provided-methods" class="section-header">Provided Methods<a href="#provided-methods" class="anchor">§</a></h2><div class="methods"><details class="toggle method-toggle" open><summary><section id="method.for_char" class="method"><a class="src rightside" href="../../src/icu_properties/code_point_map.rs.html#394-396">Source</a><h4 class="code-header">fn <a href="#method.for_char" class="fn">for_char</a>(ch: <a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.char.html">char</a>) -&gt; Self</h4></section></summary><div class="docblock"><p>Convenience method for <code>CodePointMapData::new().get(ch)</code></p>
<p><em>Enabled with the <code>compiled_data</code> Cargo feature.</em></p>
</div></details></div><h2 id="dyn-compatibility" class="section-header">Dyn Compatibility<a href="#dyn-compatibility" class="anchor">§</a></h2><div class="dyn-compatibility-info"><p>This trait is <b>not</b> <a href="https://doc.rust-lang.org/1.93.1/reference/items/traits.html#dyn-compatibility">dyn compatible</a>.</p><p><i>In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.</i></p></div><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-GeneralCategory" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#407-413">Source</a><a href="#impl-EnumeratedProperty-for-GeneralCategory" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="enum" href="enum.GeneralCategory.html" title="enum icu_properties::props::GeneralCategory">GeneralCategory</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-1" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#407-413">Source</a><a href="#associatedconstant.NAME-1" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-1" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#407-413">Source</a><a href="#associatedconstant.SHORT_NAME-1" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-BidiClass" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#227-234">Source</a><a href="#impl-EnumeratedProperty-for-BidiClass" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.BidiClass.html" title="struct icu_properties::props::BidiClass">BidiClass</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-2" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#227-234">Source</a><a href="#associatedconstant.NAME-2" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-2" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#227-234">Source</a><a href="#associatedconstant.SHORT_NAME-2" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-BidiMirroringGlyph" class="impl"><a class="src rightside" href="../../src/icu_properties/bidi.rs.html#25-32">Source</a><a href="#impl-EnumeratedProperty-for-BidiMirroringGlyph" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.BidiMirroringGlyph.html" title="struct icu_properties::props::BidiMirroringGlyph">BidiMirroringGlyph</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-3" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/bidi.rs.html#30">Source</a><a href="#associatedconstant.NAME-3" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>] = b&quot;Bidi_Mirroring_Glyph&quot;</h4></section><section id="associatedconstant.SHORT_NAME-3" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/bidi.rs.html#31">Source</a><a href="#associatedconstant.SHORT_NAME-3" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>] = b&quot;bmg&quot;</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-CanonicalCombiningClass" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1565-1572">Source</a><a href="#impl-EnumeratedProperty-for-CanonicalCombiningClass" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.CanonicalCombiningClass.html" title="struct icu_properties::props::CanonicalCombiningClass">CanonicalCombiningClass</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-4" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1565-1572">Source</a><a href="#associatedconstant.NAME-4" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-4" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1565-1572">Source</a><a href="#associatedconstant.SHORT_NAME-4" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-EastAsianWidth" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1096-1103">Source</a><a href="#impl-EnumeratedProperty-for-EastAsianWidth" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.EastAsianWidth.html" title="struct icu_properties::props::EastAsianWidth">EastAsianWidth</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-5" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1096-1103">Source</a><a href="#associatedconstant.NAME-5" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-5" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1096-1103">Source</a><a href="#associatedconstant.SHORT_NAME-5" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-GraphemeClusterBreak" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1286-1293">Source</a><a href="#impl-EnumeratedProperty-for-GraphemeClusterBreak" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.GraphemeClusterBreak.html" title="struct icu_properties::props::GraphemeClusterBreak">GraphemeClusterBreak</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-6" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1286-1293">Source</a><a href="#associatedconstant.NAME-6" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-6" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1286-1293">Source</a><a href="#associatedconstant.SHORT_NAME-6" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-HangulSyllableType" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1035-1043">Source</a><a href="#impl-EnumeratedProperty-for-HangulSyllableType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.HangulSyllableType.html" title="struct icu_properties::props::HangulSyllableType">HangulSyllableType</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-7" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1035-1043">Source</a><a href="#associatedconstant.NAME-7" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-7" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1035-1043">Source</a><a href="#associatedconstant.SHORT_NAME-7" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-IndicConjunctBreak" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1630-1637">Source</a><a href="#impl-EnumeratedProperty-for-IndicConjunctBreak" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.IndicConjunctBreak.html" title="struct icu_properties::props::IndicConjunctBreak">IndicConjunctBreak</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-8" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1630-1637">Source</a><a href="#associatedconstant.NAME-8" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-8" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1630-1637">Source</a><a href="#associatedconstant.SHORT_NAME-8" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-IndicSyllabicCategory" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1720-1727">Source</a><a href="#impl-EnumeratedProperty-for-IndicSyllabicCategory" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.IndicSyllabicCategory.html" title="struct icu_properties::props::IndicSyllabicCategory">IndicSyllabicCategory</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-9" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1720-1727">Source</a><a href="#associatedconstant.NAME-9" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-9" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1720-1727">Source</a><a href="#associatedconstant.SHORT_NAME-9" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-JoiningType" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1780-1787">Source</a><a href="#impl-EnumeratedProperty-for-JoiningType" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.JoiningType.html" title="struct icu_properties::props::JoiningType">JoiningType</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-10" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1780-1787">Source</a><a href="#associatedconstant.NAME-10" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-10" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1780-1787">Source</a><a href="#associatedconstant.SHORT_NAME-10" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-LineBreak" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1207-1214">Source</a><a href="#impl-EnumeratedProperty-for-LineBreak" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.LineBreak.html" title="struct icu_properties::props::LineBreak">LineBreak</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-11" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1207-1214">Source</a><a href="#associatedconstant.NAME-11" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-11" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1207-1214">Source</a><a href="#associatedconstant.SHORT_NAME-11" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-Script" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#968-975">Source</a><a href="#impl-EnumeratedProperty-for-Script" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.Script.html" title="struct icu_properties::props::Script">Script</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-12" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#968-975">Source</a><a href="#associatedconstant.NAME-12" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-12" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#968-975">Source</a><a href="#associatedconstant.SHORT_NAME-12" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-SentenceBreak" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1442-1449">Source</a><a href="#impl-EnumeratedProperty-for-SentenceBreak" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.SentenceBreak.html" title="struct icu_properties::props::SentenceBreak">SentenceBreak</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-13" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1442-1449">Source</a><a href="#associatedconstant.NAME-13" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-13" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1442-1449">Source</a><a href="#associatedconstant.SHORT_NAME-13" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-VerticalOrientation" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1846-1853">Source</a><a href="#impl-EnumeratedProperty-for-VerticalOrientation" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.VerticalOrientation.html" title="struct icu_properties::props::VerticalOrientation">VerticalOrientation</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-14" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1846-1853">Source</a><a href="#associatedconstant.NAME-14" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-14" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1846-1853">Source</a><a href="#associatedconstant.SHORT_NAME-14" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-EnumeratedProperty-for-WordBreak" class="impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1370-1377">Source</a><a href="#impl-EnumeratedProperty-for-WordBreak" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.EnumeratedProperty.html" title="trait icu_properties::props::EnumeratedProperty">EnumeratedProperty</a> for <a class="struct" href="struct.WordBreak.html" title="struct icu_properties::props::WordBreak">WordBreak</a></h3></section></summary><div class="impl-items"><section id="associatedconstant.NAME-15" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1370-1377">Source</a><a href="#associatedconstant.NAME-15" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.NAME" class="constant">NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section><section id="associatedconstant.SHORT_NAME-15" class="associatedconstant trait-impl"><a class="src rightside" href="../../src/icu_properties/props.rs.html#1370-1377">Source</a><a href="#associatedconstant.SHORT_NAME-15" class="anchor">§</a><h4 class="code-header">const <a href="#associatedconstant.SHORT_NAME" class="constant">SHORT_NAME</a>: &amp;'static [<a class="primitive" href="https://doc.rust-lang.org/1.93.1/std/primitive.u8.html">u8</a>]</h4></section></div></details></div><script src="../../trait.impl/icu_properties/code_point_map/trait.EnumeratedProperty.js" async></script></section></div></main></body></html>