#[repr(C)]pub enum LineBreak {
Show 48 variants
Unknown = 0,
Ambiguous = 1,
Alphabetic = 2,
BreakBoth = 3,
BreakAfter = 4,
BreakBefore = 5,
MandatoryBreak = 6,
ContingentBreak = 7,
ClosePunctuation = 8,
CombiningMark = 9,
CarriageReturn = 10,
Exclamation = 11,
Glue = 12,
Hyphen = 13,
Ideographic = 14,
Inseparable = 15,
InfixNumeric = 16,
LineFeed = 17,
Nonstarter = 18,
Numeric = 19,
OpenPunctuation = 20,
PostfixNumeric = 21,
PrefixNumeric = 22,
Quotation = 23,
ComplexContext = 24,
Surrogate = 25,
Space = 26,
BreakSymbols = 27,
ZWSpace = 28,
NextLine = 29,
WordJoiner = 30,
H2 = 31,
H3 = 32,
JL = 33,
JT = 34,
JV = 35,
CloseParenthesis = 36,
ConditionalJapaneseStarter = 37,
HebrewLetter = 38,
RegionalIndicator = 39,
EBase = 40,
EModifier = 41,
ZWJ = 42,
Aksara = 43,
AksaraPrebase = 44,
AksaraStart = 45,
ViramaFinal = 46,
Virama = 47,
}
Variants§
Unknown = 0
Ambiguous = 1
Alphabetic = 2
BreakBoth = 3
BreakAfter = 4
BreakBefore = 5
MandatoryBreak = 6
ContingentBreak = 7
ClosePunctuation = 8
CombiningMark = 9
CarriageReturn = 10
Exclamation = 11
Glue = 12
Hyphen = 13
Ideographic = 14
Inseparable = 15
InfixNumeric = 16
LineFeed = 17
Nonstarter = 18
Numeric = 19
OpenPunctuation = 20
PostfixNumeric = 21
PrefixNumeric = 22
Quotation = 23
ComplexContext = 24
Surrogate = 25
Space = 26
BreakSymbols = 27
ZWSpace = 28
NextLine = 29
WordJoiner = 30
H2 = 31
H3 = 32
JL = 33
JT = 34
JV = 35
CloseParenthesis = 36
ConditionalJapaneseStarter = 37
HebrewLetter = 38
RegionalIndicator = 39
EBase = 40
EModifier = 41
ZWJ = 42
Aksara = 43
AksaraPrebase = 44
AksaraStart = 45
ViramaFinal = 46
Virama = 47
Implementations§
Source§impl LineBreak
impl LineBreak
pub fn for_char(ch: DiplomatChar) -> Self
Sourcepub fn long_name(self) -> Option<&'static str>
pub fn long_name(self) -> Option<&'static str>
Get the “long” name of this property value (returns empty if property value is unknown)
Sourcepub fn short_name(self) -> Option<&'static str>
pub fn short_name(self) -> Option<&'static str>
Get the “short” name of this property value (returns empty if property value is unknown)
Sourcepub fn to_integer_value(self) -> u8
pub fn to_integer_value(self) -> u8
Convert to an integer value usable with ICU4C and CodePointMapData
Sourcepub fn from_integer_value(other: u8) -> Option<Self>
pub fn from_integer_value(other: u8) -> Option<Self>
Convert from an integer value from ICU4C or CodePointMapData
Trait Implementations§
impl Copy for LineBreak
Auto Trait Implementations§
impl Freeze for LineBreak
impl RefUnwindSafe for LineBreak
impl Send for LineBreak
impl Sync for LineBreak
impl Unpin for LineBreak
impl UnwindSafe for LineBreak
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more