[−][src]Struct unicode_bidi::level::Level
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
.
Methods
impl Level
[src]
[−]
impl Level
pub fn ltr() -> Level
[src]
[−]
pub fn ltr() -> Level
New LTR level with smallest number value (0).
pub fn rtl() -> Level
[src]
[−]
pub fn rtl() -> Level
New RTL level with smallest number value (1).
pub fn max_implicit_depth() -> u8
[src]
[−]
pub fn max_implicit_depth() -> u8
Maximum depth of the directional status stack during implicit resolutions.
pub fn max_explicit_depth() -> u8
[src]
[−]
pub fn max_explicit_depth() -> u8
Maximum depth of the directional status stack during explicit resolutions.
pub fn new(number: u8) -> Result<Level, Error>
[src]
[−]
pub fn new(number: u8) -> Result<Level, Error>
Create new level, fail if number is larger than max_depth + 1
.
pub fn new_explicit(number: u8) -> Result<Level, Error>
[src]
[−]
pub fn new_explicit(number: u8) -> Result<Level, Error>
Create new level, fail if number is larger than max_depth
.
pub fn number(&self) -> u8
[src]
[−]
pub fn number(&self) -> u8
The level number.
pub fn is_ltr(&self) -> bool
[src]
[−]
pub fn is_ltr(&self) -> bool
If this level is left-to-right.
pub fn is_rtl(&self) -> bool
[src]
[−]
pub fn is_rtl(&self) -> bool
If this level is right-to-left.
pub fn raise(&mut self, amount: u8) -> Result<(), Error>
[src]
[−]
pub fn raise(&mut self, amount: u8) -> Result<(), Error>
Raise level by amount
, fail if number is larger than max_depth + 1
.
pub fn raise_explicit(&mut self, amount: u8) -> Result<(), Error>
[src]
[−]
pub fn raise_explicit(&mut self, amount: u8) -> Result<(), Error>
Raise level by amount
, fail if number is larger than max_depth
.
pub fn lower(&mut self, amount: u8) -> Result<(), Error>
[src]
[−]
pub fn lower(&mut self, amount: u8) -> Result<(), Error>
Lower level by amount
, fail if number goes below zero.
pub fn new_explicit_next_ltr(&self) -> Result<Level, Error>
[src]
[−]
pub fn new_explicit_next_ltr(&self) -> Result<Level, Error>
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]
[−]
pub fn new_explicit_next_rtl(&self) -> Result<Level, Error>
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]
[−]
pub fn new_lowest_ge_rtl(&self) -> Result<Level, Error>
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]
[−]
pub fn bidi_class(&self) -> BidiClass
Generate a character type based on a level (as specified in steps X10 and N2).
pub fn vec(v: &[u8]) -> Vec<Level>
[src]
pub fn vec(v: &[u8]) -> Vec<Level>
Trait Implementations
impl Into<u8> for Level
[src]
[+]
impl Into<u8> for Level
impl PartialOrd<Level> for Level
[src]
[+]
impl PartialOrd<Level> for Level
impl Ord for Level
[src]
[+]
impl Ord for Level
impl PartialEq<Level> for Level
[src]
[+]
impl PartialEq<Level> for Level
impl<'a> PartialEq<&'a str> for Level
[src]
[+]
impl<'a> PartialEq<&'a str> for Level
impl<'a> PartialEq<String> for Level
[src]
[+]
impl<'a> PartialEq<String> for Level
impl From<u8> for Level
[src]
[+]
impl From<u8> for Level
impl Clone for Level
[src]
[+]
impl Clone for Level
impl Copy for Level
[src]
impl Copy for Level
impl Eq for Level
[src]
impl Eq for Level
impl Debug for Level
[src]
[+]
impl Debug for Level
Auto Trait Implementations
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
[−]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
[−]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
[−]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
[−]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T
[src]
[−]
impl<T> From for T
impl<T, U> TryFrom for T where
T: From<U>,
[src]
[−]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
[−]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
[−]
impl<T> Borrow for T where
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
[−]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
[−]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
[−]
impl<T, U> TryInto for T where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
[−]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
try_from
)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized,
[src]
[−]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
[−]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more