Struct typst_syntax::package::PackageInfo
source · pub struct PackageInfo {
pub name: EcoString,
pub version: PackageVersion,
pub entrypoint: EcoString,
pub compiler: Option<PackageVersion>,
}
Expand description
The [package]
key in the manifest.
More fields are specified, but they are not relevant to the compiler.
Fields§
§name: EcoString
The name of the package within its namespace.
version: PackageVersion
The package’s version.
entrypoint: EcoString
The path of the entrypoint into the package.
compiler: Option<PackageVersion>
The minimum required compiler version for the package.
Trait Implementations§
source§impl Clone for PackageInfo
impl Clone for PackageInfo
source§fn clone(&self) -> PackageInfo
fn clone(&self) -> PackageInfo
Returns a copy 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 PackageInfo
impl Debug for PackageInfo
source§impl<'de> Deserialize<'de> for PackageInfo
impl<'de> Deserialize<'de> for PackageInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for PackageInfo
impl Hash for PackageInfo
source§impl PartialEq for PackageInfo
impl PartialEq for PackageInfo
source§fn eq(&self, other: &PackageInfo) -> bool
fn eq(&self, other: &PackageInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PackageInfo
impl Serialize for PackageInfo
impl Eq for PackageInfo
impl StructuralPartialEq for PackageInfo
Auto Trait Implementations§
impl Freeze for PackageInfo
impl RefUnwindSafe for PackageInfo
impl Send for PackageInfo
impl Sync for PackageInfo
impl Unpin for PackageInfo
impl UnwindSafe for PackageInfo
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