Struct wezterm_bidi::ReorderedRun
source · pub struct ReorderedRun {
pub direction: Direction,
pub level: Level,
pub range: Range<usize>,
pub indices: Vec<usize>,
}
Fields§
§direction: Direction
The direction for this run. Derived from the level.
level: Level
Embedding level of this run.
range: Range<usize>
The starting and ending codepoint indices for this run
indices: Vec<usize>
The indices in their adjusted order
Trait Implementations§
source§impl Clone for ReorderedRun
impl Clone for ReorderedRun
source§fn clone(&self) -> ReorderedRun
fn clone(&self) -> ReorderedRun
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ReorderedRun
impl Debug for ReorderedRun
source§impl PartialEq for ReorderedRun
impl PartialEq for ReorderedRun
source§fn eq(&self, other: &ReorderedRun) -> bool
fn eq(&self, other: &ReorderedRun) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ReorderedRun
impl StructuralEq for ReorderedRun
impl StructuralPartialEq for ReorderedRun
Auto Trait Implementations§
impl RefUnwindSafe for ReorderedRun
impl Send for ReorderedRun
impl Sync for ReorderedRun
impl Unpin for ReorderedRun
impl UnwindSafe for ReorderedRun
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