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
type trait interface of CompilerWorld
.
Required Associated Types§
Sourcetype FontResolver: FontResolver + Send + Sync + Sized
type FontResolver: FontResolver + Send + Sync + Sized
Specify the font resolver for typst compiler.
Sourcetype AccessModel: VfsAccessModel + Clone + Send + Sync + Sized
type AccessModel: VfsAccessModel + Clone + Send + Sync + Sized
Specify the access model for VFS.