pub trait CompilerFeat:
Send
+ Sync
+ 'static {
type FontResolver: FontResolver + Send + Sync + Sized;
type AccessModel: VfsAccessModel + Clone + Send + Sync + Sized;
type Registry: PackageRegistry + Send + Sync + Sized;
}
Expand description
The type trait interface of CompilerWorld
.
Required Associated Types§
Sourcetype FontResolver: FontResolver + Send + Sync + Sized
type FontResolver: FontResolver + Send + Sync + Sized
The font resolver for the typst compiler.
Sourcetype AccessModel: VfsAccessModel + Clone + Send + Sync + Sized
type AccessModel: VfsAccessModel + Clone + Send + Sync + Sized
The access model for the VFS.