Struct unicode_bidi::level::Level [−][src]
Embedding Level
Embedding Levels are numbers between 0 and 126 (inclusive), where even values denote a left-to-right (LTR) direction and odd values a right-to-left (RTL) direction.
This struct maintains a valid status for level numbers, meaning that creating a new level, or
mutating an existing level, with the value smaller than 0
(before conversion to u8
) or
larger than 125 results in an Error
.
Implementations
impl Level
[src]
pub fn ltr() -> Level
[src]
New LTR level with smallest number value (0).
pub fn rtl() -> Level
[src]
New RTL level with smallest number value (1).
pub fn max_implicit_depth() -> u8
[src]
Maximum depth of the directional status stack during implicit resolutions.
pub fn max_explicit_depth() -> u8
[src]
Maximum depth of the directional status stack during explicit resolutions.
pub fn new(number: u8) -> Result<Level, Error>
[src]
Create new level, fail if number is larger than max_depth + 1
.
pub fn new_explicit(number: u8) -> Result<Level, Error>
[src]
Create new level, fail if number is larger than max_depth
.
pub fn number(&self) -> u8
[src]
The level number.
pub fn is_ltr(&self) -> bool
[src]
If this level is left-to-right.
pub fn is_rtl(&self) -> bool
[src]
If this level is right-to-left.
pub fn raise(&mut self, amount: u8) -> Result<(), Error>
[src]
Raise level by amount
, fail if number is larger than max_depth + 1
.
pub fn raise_explicit(&mut self, amount: u8) -> Result<(), Error>
[src]
Raise level by amount
, fail if number is larger than max_depth
.
pub fn lower(&mut self, amount: u8) -> Result<(), Error>
[src]
Lower level by amount
, fail if number goes below zero.
pub fn new_explicit_next_ltr(&self) -> Result<Level, Error>
[src]
The next LTR (even) level greater than this, or fail if number is larger than max_depth
.
pub fn new_explicit_next_rtl(&self) -> Result<Level, Error>
[src]
The next RTL (odd) level greater than this, or fail if number is larger than max_depth
.
pub fn new_lowest_ge_rtl(&self) -> Result<Level, Error>
[src]
The lowest RTL (odd) level greater than or equal to this, or fail if number is larger than
max_depth + 1
.
pub fn bidi_class(&self) -> BidiClass
[src]
Generate a character type based on a level (as specified in steps X10 and N2).
pub fn vec(v: &[u8]) -> Vec<Level>
[src]
Trait Implementations
impl Clone for Level
[src]
impl Copy for Level
[src]
impl Debug for Level
[src]
impl Eq for Level
[src]
impl From<u8> for Level
[src]
impl Into<u8> for Level
[src]
impl Ord for Level
[src]
fn cmp(&self, other: &Level) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl<'a> PartialEq<&'a str> for Level
[src]
Used for matching levels in conformance tests
impl PartialEq<Level> for Level
[src]
impl<'a> PartialEq<String> for Level
[src]
Used for matching levels in conformance tests
impl PartialOrd<Level> for Level
[src]
fn partial_cmp(&self, other: &Level) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl StructuralEq for Level
[src]
impl StructuralPartialEq for Level
[src]
Auto Trait Implementations
impl RefUnwindSafe for Level
impl Send for Level
impl Sync for Level
impl Unpin for Level
impl UnwindSafe for Level
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,