Struct CreateAnOrganizationRepository

Source
pub struct CreateAnOrganizationRepository<'a> {
Show 24 fields pub org: &'a str, pub name: &'a str, pub description: Option<&'a str>, pub homepage: Option<&'a str>, pub private: Option<bool>, pub visibility: Option<&'a str>, pub has_issues: Option<bool>, pub has_projects: Option<bool>, pub has_wiki: Option<bool>, pub has_downloads: Option<bool>, pub is_template: Option<bool>, pub team_id: Option<u8>, pub auto_init: Option<bool>, pub gitignore_template: Option<&'a str>, pub license_template: Option<&'a str>, pub allow_squash_merge: Option<bool>, pub allow_rebase_merge: Option<bool>, pub allow_auto_merge: Option<bool>, pub delete_branch_on_merge: Option<bool>, pub use_squash_pr_title_as_default: Option<bool>, pub squash_merge_commit_title: Option<&'a str>, pub squash_merge_commit_message: Option<&'a str>, pub merge_commit_title: Option<&'a str>, pub merge_commit_message: Option<&'a str>,
}
Expand description

Fields§

§org: &'a str§name: &'a str§description: Option<&'a str>§homepage: Option<&'a str>§private: Option<bool>§visibility: Option<&'a str>§has_issues: Option<bool>§has_projects: Option<bool>§has_wiki: Option<bool>§has_downloads: Option<bool>§is_template: Option<bool>§team_id: Option<u8>§auto_init: Option<bool>§gitignore_template: Option<&'a str>§license_template: Option<&'a str>§allow_squash_merge: Option<bool>§allow_rebase_merge: Option<bool>§allow_auto_merge: Option<bool>§delete_branch_on_merge: Option<bool>§use_squash_pr_title_as_default: Option<bool>§squash_merge_commit_title: Option<&'a str>§squash_merge_commit_message: Option<&'a str>§merge_commit_title: Option<&'a str>§merge_commit_message: Option<&'a str>

Implementations§

Source§

impl<'a> CreateAnOrganizationRepository<'a>

Source

pub fn new(org: &'a str, name: &'a str) -> Self

Source

pub fn org(self, org: &'a str) -> Self

Set a new org.

Source

pub fn name(self, name: &'a str) -> Self

Set a new name.

Source

pub fn description(self, description: &'a str) -> Self

Set a new description.

Source

pub fn homepage(self, homepage: &'a str) -> Self

Set a new homepage.

Source

pub fn private(self, private: bool) -> Self

Set a new private.

Source

pub fn visibility(self, visibility: &'a str) -> Self

Set a new visibility.

Source

pub fn has_issues(self, has_issues: bool) -> Self

Set a new has_issues.

Source

pub fn has_projects(self, has_projects: bool) -> Self

Set a new has_projects.

Source

pub fn has_wiki(self, has_wiki: bool) -> Self

Set a new has_wiki.

Source

pub fn has_downloads(self, has_downloads: bool) -> Self

Set a new has_downloads.

Source

pub fn is_template(self, is_template: bool) -> Self

Set a new is_template.

Source

pub fn team_id(self, team_id: u8) -> Self

Set a new team_id.

Source

pub fn auto_init(self, auto_init: bool) -> Self

Set a new auto_init.

Source

pub fn gitignore_template(self, gitignore_template: &'a str) -> Self

Set a new gitignore_template.

Source

pub fn license_template(self, license_template: &'a str) -> Self

Set a new license_template.

Source

pub fn allow_squash_merge(self, allow_squash_merge: bool) -> Self

Set a new allow_squash_merge.

Source

pub fn allow_rebase_merge(self, allow_rebase_merge: bool) -> Self

Set a new allow_rebase_merge.

Source

pub fn allow_auto_merge(self, allow_auto_merge: bool) -> Self

Set a new allow_auto_merge.

Source

pub fn delete_branch_on_merge(self, delete_branch_on_merge: bool) -> Self

Source

pub fn use_squash_pr_title_as_default( self, use_squash_pr_title_as_default: bool, ) -> Self

Source

pub fn squash_merge_commit_title( self, squash_merge_commit_title: &'a str, ) -> Self

Source

pub fn squash_merge_commit_message( self, squash_merge_commit_message: &'a str, ) -> Self

Source

pub fn merge_commit_title(self, merge_commit_title: &'a str) -> Self

Set a new merge_commit_title.

Source

pub fn merge_commit_message(self, merge_commit_message: &'a str) -> Self

Trait Implementations§

Source§

impl<'a> Api for CreateAnOrganizationRepository<'a>

Source§

const ACCEPT: &'static str = "application/vnd.github+json"

Request’s header Accept’s value.
Source§

fn api(&self) -> String

Request’s target URI/URL.
Source§

const BASE_URI: &'static str = "https://api.github.com"

GitHub REST APIs’ base prefix.
Source§

impl<'a> ApiExt for CreateAnOrganizationRepository<'a>

Source§

const METHOD: Method = Method::Post

HTTP method.
Source§

fn payload_params(&self) -> Vec<(&'static str, String)>

Request’s payload parameters. Read more
Source§

impl<'a> Clone for CreateAnOrganizationRepository<'a>

Source§

fn clone(&self) -> CreateAnOrganizationRepository<'a>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for CreateAnOrganizationRepository<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> PartialEq for CreateAnOrganizationRepository<'a>

Source§

fn eq(&self, other: &CreateAnOrganizationRepository<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> Eq for CreateAnOrganizationRepository<'a>

Source§

impl<'a> StructuralPartialEq for CreateAnOrganizationRepository<'a>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.