Struct hubcaps_ex::gists::Gists[][src]

pub struct Gists { /* fields omitted */ }

Implementations

impl Gists[src]

pub fn star(&self, id: &str) -> Future<()>[src]

pub fn unstar(&self, id: &str) -> Future<()>[src]

pub fn fork(&self, id: &str) -> Future<Gist>[src]

pub fn forks(&self, id: &str) -> Future<Vec<GistFork>>[src]

pub fn delete(&self, id: &str) -> Future<()>[src]

pub fn get(&self, id: &str) -> Future<Gist>[src]

pub fn getrev(&self, id: &str, sha: &str) -> Future<Gist>[src]

pub fn list(&self, options: &GistListOptions) -> Future<Vec<Gist>>[src]

pub fn public(&self) -> Future<Vec<Gist>>[src]

pub fn starred(&self) -> Future<Vec<Gist>>[src]

pub fn create(&self, gist: &GistOptions) -> Future<Gist>[src]

pub fn edit(&self, id: &str, gist: &GistOptions) -> Future<Gist>[src]

Auto Trait Implementations

impl !RefUnwindSafe for Gists

impl Send for Gists

impl Sync for Gists

impl Unpin for Gists

impl !UnwindSafe for Gists

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.