[][src]Struct octocrab::gitignore::GitignoreHandler

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

Handler for GitHub's gitignore API.

Created with Octocrab::gitignore.

Implementations

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

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

List all templates available to pass as an option when creating a repository.

let list = octocrab::instance().gitignore().list().await?;

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

Get the source of a single template.

let gitignore = octocrab::instance().gitignore().get("C").await?;

Auto Trait Implementations

impl<'octo> !RefUnwindSafe for GitignoreHandler<'octo>

impl<'octo> Send for GitignoreHandler<'octo>

impl<'octo> Sync for GitignoreHandler<'octo>

impl<'octo> Unpin for GitignoreHandler<'octo>

impl<'octo> !UnwindSafe for GitignoreHandler<'octo>

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, 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.