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
impl License
Sourcepub fn new(license: String) -> Result<Self, Error>
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
Sourcepub fn from_valid_spdx(identifier: String) -> Result<Self, Error>
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.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for License
impl<'de> Deserialize<'de> for License
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>,
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 FromStr for License
impl FromStr for License
Source§fn from_str(s: &str) -> Result<Self, Self::Err>
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.