[][src]Struct bliss::Bliss

pub struct Bliss {
    pub cache: Cache,
}

Bliss, gitignore client

Fields

cache: Cache

Cache of gitignore info

Methods

impl Bliss[src]

pub fn new() -> Self[src]

Create a new bliss client

pub fn supported_langs(&self) -> Result<Vec<String>, Box<dyn Error>>[src]

Get list of supported languages from cache or fallback to web

pub fn get_lang_list() -> Result<Vec<String>, Box<dyn Error>>[src]

Get list of supported languages from web

pub fn is_supported(&self, lang: &str) -> bool[src]

Check whether a given language is supported

pub fn get_lang_gitignore(&mut self, lang: &str) -> Option<Gitignore>[src]

Get the respective .gitignore for a given language

Auto Trait Implementations

impl Send for Bliss

impl Sync for Bliss

Blanket Implementations

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.

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]