Struct unicode_bidi::implicit::BracketPair
source · struct BracketPair {
start: usize,
end: usize,
start_run: usize,
end_run: usize,
}
Fields§
§start: usize
The text-relative index of the opening bracket.
end: usize
The text-relative index of the closing bracket.
start_run: usize
The index of the run (in the run sequence) that the opening bracket is in.
end_run: usize
The index of the run (in the run sequence) that the closing bracket is in.
Auto Trait Implementations§
impl Freeze for BracketPair
impl RefUnwindSafe for BracketPair
impl Send for BracketPair
impl Sync for BracketPair
impl Unpin for BracketPair
impl UnwindSafe for BracketPair
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