[][src]Struct hubcaps::repositories::RepoOptionsBuilder

pub struct RepoOptionsBuilder(_);

Implementations

impl RepoOptionsBuilder[src]

pub fn description<D>(&mut self, description: D) -> &mut Self where
    D: Into<String>, 
[src]

pub fn homepage<H>(&mut self, homepage: H) -> &mut Self where
    H: Into<String>, 
[src]

pub fn private(&mut self, private: bool) -> &mut Self[src]

pub fn has_issues(&mut self, has_issues: bool) -> &mut Self[src]

pub fn has_wiki(&mut self, has_wiki: bool) -> &mut Self[src]

pub fn has_downloads(&mut self, has_downloads: bool) -> &mut Self[src]

pub fn team_id(&mut self, team_id: i32) -> &mut Self[src]

pub fn auto_init(&mut self, auto_init: bool) -> &mut Self[src]

pub fn gitignore_template<GI>(&mut self, gitignore_template: GI) -> &mut Self where
    GI: Into<String>, 
[src]

pub fn license_template<L>(&mut self, license_template: L) -> &mut Self where
    L: Into<String>, 
[src]

pub fn build(&self) -> RepoOptions[src]

Auto Trait Implementations

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.