Struct github_rs::github::RepoCreate [] [src]

pub struct RepoCreate {
    pub name: String,
    pub description: Option<String>,
    pub homepage: Option<String>,
    pub private: Option<bool>,
    pub has_issues: Option<bool>,
    pub has_wiki: Option<bool>,
    pub has_downloads: Option<bool>,
    pub team_id: Option<i32>,
    pub auto_init: Option<bool>,
    pub gitignore_template: Option<String>,
    pub license_template: Option<String>,
}

Fields

Trait Implementations

impl Debug for RepoCreate
[src]

Formats the value using the given formatter.

impl PartialEq for RepoCreate
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.