Struct icu_capi::bidi::ffi::ICU4XBidiParagraph

source ·
pub struct ICU4XBidiParagraph<'info>(pub Paragraph<'info, 'info>);
Expand description

Bidi information for a single processed paragraph

Tuple Fields§

§0: Paragraph<'info, 'info>

Implementations§

source§

impl<'info> ICU4XBidiParagraph<'info>

source

pub fn set_paragraph_in_text(&mut self, n: usize) -> Result<(), ICU4XError>

Given a paragraph index n within the surrounding text, this sets this object to the paragraph at that index. Returns ICU4XError::OutOfBoundsError when out of bounds.

This is equivalent to calling paragraph_at() on ICU4XBidiInfo but doesn’t create a new object

source

pub fn direction(&self) -> ICU4XBidiDirection

The primary direction of this paragraph

source

pub fn size(&self) -> usize

The number of bytes in this paragraph

source

pub fn range_start(&self) -> usize

The start index of this paragraph within the source text

source

pub fn range_end(&self) -> usize

The end index of this paragraph within the source text

source

pub fn reorder_line( &self, range_start: usize, range_end: usize, out: &mut DiplomatWriteable, ) -> Result<(), ICU4XError>

Reorder a line based on display order. The ranges are specified relative to the source text and must be contained within this paragraph’s range.

source

pub fn level_at(&self, pos: usize) -> u8

Get the BIDI level at a particular byte index in this paragraph. This integer is conceptually a unicode_bidi::Level, and can be further inspected using the static methods on ICU4XBidi.

Returns 0 (equivalent to Level::ltr()) on error

Auto Trait Implementations§

§

impl<'info> Freeze for ICU4XBidiParagraph<'info>

§

impl<'info> RefUnwindSafe for ICU4XBidiParagraph<'info>

§

impl<'info> Send for ICU4XBidiParagraph<'info>

§

impl<'info> Sync for ICU4XBidiParagraph<'info>

§

impl<'info> Unpin for ICU4XBidiParagraph<'info>

§

impl<'info> UnwindSafe for ICU4XBidiParagraph<'info>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T