[][src]Struct spdx::Licensee

pub struct Licensee { /* fields omitted */ }

A convenience wrapper for a license and optional exception that can be checked against a license requirement to see if it satisfies/matches the requirement

Methods

impl Licensee[src]

pub fn new(license: LicenseItem, exception: Option<ExceptionId>) -> Self[src]

Creates a licensee from its component parts. Note that use of SPDX's or_later is completely ignore for licensees as it only applies to the license holder

pub fn parse(original: &str) -> Result<Self, ParseError>[src]

Parses an simplified version of an SPDX license expression that can contain at most 1 valid SDPX license with an optional exception joined by a WITH.

eg <license-id> | <license-id> WITH <exception-id>

pub fn satisfies(&self, req: &LicenseReq) -> bool[src]

Determines whether the specified license requirement is satisfied by this license (+exception)

Trait Implementations

impl Eq for Licensee[src]

impl PartialOrd<Licensee> for Licensee[src]

impl PartialOrd<LicenseReq> for Licensee[src]

impl PartialEq<Licensee> for Licensee[src]

impl PartialEq<LicenseReq> for Licensee[src]

impl Ord for Licensee[src]

impl Debug for Licensee[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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