[][src]Struct octocrab::licenses::LicenseHandler

pub struct LicenseHandler<'octo> { /* fields omitted */ }

Handler for GitHub's license API.

Created with Octocrab::licenses.

Implementations

impl<'octo> LicenseHandler<'octo>[src]

pub async fn list_commonly_used<'_>(&'_ self) -> Result<Vec<License>>[src]

List commonly used licenses.

let licenses = octocrab::instance().licenses().list_commonly_used().await?;

pub async fn get<'_>(&'_ self, key: impl AsRef<str>) -> Result<License>[src]

Get an individual license.

let license = octocrab::instance().licenses().get("mit").await?;

Auto Trait Implementations

impl<'octo> !RefUnwindSafe for LicenseHandler<'octo>[src]

impl<'octo> Send for LicenseHandler<'octo>[src]

impl<'octo> Sync for LicenseHandler<'octo>[src]

impl<'octo> Unpin for LicenseHandler<'octo>[src]

impl<'octo> !UnwindSafe for LicenseHandler<'octo>[src]

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> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.