pub struct NumContinuation<ET: EngineTypes> {
pub is_negative: bool,
pub next: Either<u8, (TeXCommand<ET>, ET::Token)>,
}Fields§
§is_negative: bool§next: Either<u8, (TeXCommand<ET>, ET::Token)>Auto Trait Implementations§
impl<ET> Freeze for NumContinuation<ET>where
<ET as EngineTypes>::Token: Freeze,
<ET as EngineTypes>::Char: Freeze,
<ET as EngineTypes>::Font: Freeze,
impl<ET> RefUnwindSafe for NumContinuation<ET>where
<ET as EngineTypes>::Token: RefUnwindSafe,
<ET as EngineTypes>::Char: RefUnwindSafe,
<ET as EngineTypes>::Font: RefUnwindSafe,
impl<ET> Send for NumContinuation<ET>
impl<ET> Sync for NumContinuation<ET>
impl<ET> Unpin for NumContinuation<ET>where
<ET as EngineTypes>::Token: Unpin,
<ET as EngineTypes>::Char: Unpin,
<ET as EngineTypes>::Font: Unpin,
impl<ET> UnsafeUnpin for NumContinuation<ET>where
<ET as EngineTypes>::Token: UnsafeUnpin,
<ET as EngineTypes>::Char: UnsafeUnpin,
<ET as EngineTypes>::Font: UnsafeUnpin,
impl<ET> UnwindSafe for NumContinuation<ET>where
<ET as EngineTypes>::Token: UnwindSafe,
<ET as EngineTypes>::Char: UnwindSafe,
<ET as EngineTypes>::Font: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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