pub struct DefaultPlainTeXEngineTypes;
Expand description
Example implementation of EngineTypes
for a plain TeX engine.
Trait Implementations§
Source§impl Clone for DefaultPlainTeXEngineTypes
impl Clone for DefaultPlainTeXEngineTypes
Source§fn clone(&self) -> DefaultPlainTeXEngineTypes
fn clone(&self) -> DefaultPlainTeXEngineTypes
Returns a duplicate 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 DefaultPlainTeXEngineTypes
impl Debug for DefaultPlainTeXEngineTypes
Source§impl EngineTypes for DefaultPlainTeXEngineTypes
impl EngineTypes for DefaultPlainTeXEngineTypes
type Char = u8
type CSName = (NonZero<u32>, PhantomData<u8>)
type Token = CompactToken
type Extension = ()
type Int = i32
type Dim = Dim32
type MuDim = Mu
type Num = DefaultNumSet
type State = DefaultState<DefaultPlainTeXEngineTypes>
type File = VirtualFile<u8>
type FileSystem = NoOutputFileSystem<u8>
type Outputs = LogOutputs
type Mouth = DefaultMouth<DefaultPlainTeXEngineTypes>
type Gullet = DefaultGullet<DefaultPlainTeXEngineTypes>
type CustomNode = Infallible
type ErrorHandler = ErrorThrower<DefaultPlainTeXEngineTypes>
type Stomach = DefaultStomach<DefaultPlainTeXEngineTypes>
type Font = Rc<TfmFontI<i32, Dim32, (NonZero<u32>, PhantomData<u8>)>>
type FontSystem = TfmFontSystem<i32, Dim32, (NonZero<u32>, PhantomData<u8>)>
impl Copy for DefaultPlainTeXEngineTypes
Auto Trait Implementations§
impl Freeze for DefaultPlainTeXEngineTypes
impl RefUnwindSafe for DefaultPlainTeXEngineTypes
impl Send for DefaultPlainTeXEngineTypes
impl Sync for DefaultPlainTeXEngineTypes
impl Unpin for DefaultPlainTeXEngineTypes
impl UnwindSafe for DefaultPlainTeXEngineTypes
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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