Struct typst_syntax::package::PackageVersion
source · pub struct PackageVersion {
pub major: u32,
pub minor: u32,
pub patch: u32,
}
Expand description
A package’s version.
Fields§
§major: u32
The package’s major version.
minor: u32
The package’s minor version.
patch: u32
The package’s patch version.
Implementations§
Trait Implementations§
source§impl Clone for PackageVersion
impl Clone for PackageVersion
source§fn clone(&self) -> PackageVersion
fn clone(&self) -> PackageVersion
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 PackageVersion
impl Debug for PackageVersion
source§impl<'de> Deserialize<'de> for PackageVersion
impl<'de> Deserialize<'de> for PackageVersion
source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for PackageVersion
impl Display for PackageVersion
source§impl FromStr for PackageVersion
impl FromStr for PackageVersion
source§impl Hash for PackageVersion
impl Hash for PackageVersion
source§impl Ord for PackageVersion
impl Ord for PackageVersion
source§fn cmp(&self, other: &PackageVersion) -> Ordering
fn cmp(&self, other: &PackageVersion) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for PackageVersion
impl PartialEq for PackageVersion
source§fn eq(&self, other: &PackageVersion) -> bool
fn eq(&self, other: &PackageVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for PackageVersion
impl PartialOrd for PackageVersion
source§fn partial_cmp(&self, other: &PackageVersion) -> Option<Ordering>
fn partial_cmp(&self, other: &PackageVersion) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for PackageVersion
impl Serialize for PackageVersion
impl Copy for PackageVersion
impl Eq for PackageVersion
impl StructuralPartialEq for PackageVersion
Auto Trait Implementations§
impl Freeze for PackageVersion
impl RefUnwindSafe for PackageVersion
impl Send for PackageVersion
impl Sync for PackageVersion
impl Unpin for PackageVersion
impl UnwindSafe for PackageVersion
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