alpm_types::license

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>)

§

Unknown(String)

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;
use alpm_types::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 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 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 T)

🔬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§

default 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.
§

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

§

impl<T> MaybeSendSync for T