Enum License

Source
pub enum License {
    Spdx(Box<Expression>),
    Unknown(String),
}
Expand description

Represents a license expression that can be either a valid SPDX identifier or a non-standard one.

§Examples

use std::str::FromStr;

use alpm_types::License;

// Create License from a valid SPDX identifier
let license = License::from_str("MIT")?;
assert!(license.is_spdx());
assert_eq!(license.to_string(), "MIT");

// Create License from an invalid/non-SPDX identifier
let license = License::from_str("My-Custom-License")?;
assert!(!license.is_spdx());
assert_eq!(license.to_string(), "My-Custom-License");

Variants§

§

Spdx(Box<Expression>)

A valid SPDX license expression

This variant is boxed to avoid large allocations

§

Unknown(String)

A non-standard license identifier

Implementations§

Source§

impl License

Source

pub fn new(license: String) -> Result<Self, Error>

Creates a new license

This function accepts both SPDX and non-standard identifiers and it is the same as as calling License::from_str

Source

pub fn from_valid_spdx(identifier: String) -> Result<Self, Error>

Creates a new license from a valid SPDX identifier

§Examples
use alpm_types::{Error, License};

let license = License::from_valid_spdx("Apache-2.0".to_string())?;
assert!(license.is_spdx());
assert_eq!(license.to_string(), "Apache-2.0");

assert!(License::from_valid_spdx("GPL-0.0".to_string()).is_err());
assert!(License::from_valid_spdx("Custom-License".to_string()).is_err());

assert_eq!(
    License::from_valid_spdx("GPL-2.0".to_string()),
    Err(Error::DeprecatedLicense("GPL-2.0".to_string()))
);
§Errors

Returns an error if the given input cannot be parsed or is a deprecated license.

Source

pub fn is_spdx(&self) -> bool

Returns true if the license is a valid SPDX identifier

Trait Implementations§

Source§

impl Clone for License

Source§

fn clone(&self) -> License

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for License

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for License

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Custom serde serialization as Spdx doesn’t provide a serde Deserialize implementation. This implements deserialization from a string type.

Attempt to parse the given input as an [spdx::Expression] and to return a License::Spdx. If that fails, treat it as a License::Unknown that contains the original string.

Source§

impl Display for License

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl FromStr for License

Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Creates a new License instance from a string slice.

If the input is a valid SPDX license expression, it will be marked as such; otherwise, it will be treated as a non-standard license identifier.

§Examples
use std::str::FromStr;

use alpm_types::License;

let license = License::from_str("Apache-2.0")?;
assert!(license.is_spdx());
assert_eq!(license.to_string(), "Apache-2.0");

let license = License::from_str("NonStandard-License")?;
assert!(!license.is_spdx());
assert_eq!(license.to_string(), "NonStandard-License");
§Errors

Returns an error if the given input is a deprecated SPDX license.

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

impl PartialEq for License

Source§

fn eq(&self, other: &License) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for License

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Custom serde serialization as Spdx doesn’t provide a serde Serialize implementation.

Source§

impl StructuralPartialEq for License

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T