[][src]Struct spdx::LicenseId

pub struct LicenseId {
    pub name: &'static str,
    pub full_name: &'static str,
    // some fields omitted
}

Unique identifier for a particular license

let bsd = spdx::license_id("BSD-3-Clause").unwrap();

assert!(
    bsd.is_fsf_free_libre()
    && bsd.is_osi_approved()
    && !bsd.is_deprecated()
    && !bsd.is_copyleft()
);

Fields

name: &'static str

The short identifier for the license

full_name: &'static str

The full name of the license

Methods

impl LicenseId[src]

pub fn is_fsf_free_libre(self) -> bool[src]

Returns true if the license is considered free by the FSF

assert!(spdx::license_id("GPL-2.0-only").unwrap().is_fsf_free_libre());

pub fn is_osi_approved(self) -> bool[src]

Returns true if the license is OSI approved

assert!(spdx::license_id("MIT").unwrap().is_osi_approved());

pub fn is_deprecated(self) -> bool[src]

Returns true if the license is deprecated

assert!(spdx::license_id("wxWindows").unwrap().is_deprecated());

pub fn is_copyleft(self) -> bool[src]

Returns true if the license is copyleft

assert!(spdx::license_id("LGPL-3.0-or-later").unwrap().is_copyleft());

pub fn is_gnu(self) -> bool[src]

Returns true if the license is a GNU license, which operate differently than all other SPDX license identifiers

assert!(spdx::license_id("AGPL-3.0-only").unwrap().is_gnu());

Trait Implementations

impl Clone for LicenseId[src]

impl Copy for LicenseId[src]

impl Debug for LicenseId[src]

impl Eq for LicenseId[src]

impl From<LicenseId> for LicenseReq[src]

impl Ord for LicenseId[src]

impl PartialEq<LicenseId> for LicenseId[src]

impl PartialOrd<LicenseId> for LicenseId[src]

impl StructuralEq for LicenseId[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.