pub struct UpdateARepository<'a> {Show 27 fields
pub owner: &'a str,
pub repo: &'a str,
pub name: Option<&'a str>,
pub description: Option<&'a str>,
pub homepage: Option<&'a str>,
pub private: Option<bool>,
pub visibility: Option<&'a str>,
pub security_and_analysis: Option<&'a str>,
pub has_issues: Option<bool>,
pub has_projects: Option<bool>,
pub has_wiki: Option<bool>,
pub is_template: Option<bool>,
pub default_branch: Option<&'a str>,
pub allow_squash_merge: Option<bool>,
pub allow_merge_commit: Option<bool>,
pub allow_rebase_merge: Option<bool>,
pub allow_auto_merge: Option<bool>,
pub delete_branch_on_merge: Option<bool>,
pub allow_update_branch: 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>,
pub archived: Option<bool>,
pub allow_forking: Option<bool>,
pub web_commit_signoff_required: Option<bool>,
}
Expand description
GitHub reference(s):
Fields§
§owner: &'a str
§repo: &'a str
§name: Option<&'a str>
§description: Option<&'a str>
§homepage: Option<&'a str>
§private: Option<bool>
§visibility: Option<&'a str>
§security_and_analysis: Option<&'a str>
§has_issues: Option<bool>
§has_projects: Option<bool>
§has_wiki: Option<bool>
§is_template: Option<bool>
§default_branch: Option<&'a str>
§allow_squash_merge: Option<bool>
§allow_merge_commit: Option<bool>
§allow_rebase_merge: Option<bool>
§allow_auto_merge: Option<bool>
§delete_branch_on_merge: Option<bool>
§allow_update_branch: 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>
§archived: Option<bool>
§allow_forking: Option<bool>
§web_commit_signoff_required: Option<bool>
Implementations§
Source§impl<'a> UpdateARepository<'a>
impl<'a> UpdateARepository<'a>
Sourcepub fn new(owner: &'a str, repo: &'a str) -> Self
pub fn new(owner: &'a str, repo: &'a str) -> Self
Build a UpdateARepository
instance.
Sourcepub fn description(self, description: &'a str) -> Self
pub fn description(self, description: &'a str) -> Self
Set a new description
.
Sourcepub fn visibility(self, visibility: &'a str) -> Self
pub fn visibility(self, visibility: &'a str) -> Self
Set a new visibility
.
Sourcepub fn security_and_analysis(self, security_and_analysis: &'a str) -> Self
pub fn security_and_analysis(self, security_and_analysis: &'a str) -> Self
Set a new security_and_analysis
.
Sourcepub fn has_issues(self, has_issues: bool) -> Self
pub fn has_issues(self, has_issues: bool) -> Self
Set a new has_issues
.
Sourcepub fn has_projects(self, has_projects: bool) -> Self
pub fn has_projects(self, has_projects: bool) -> Self
Set a new has_projects
.
Sourcepub fn is_template(self, is_template: bool) -> Self
pub fn is_template(self, is_template: bool) -> Self
Set a new is_template
.
Sourcepub fn default_branch(self, default_branch: &'a str) -> Self
pub fn default_branch(self, default_branch: &'a str) -> Self
Set a new default_branch
.
Sourcepub fn allow_squash_merge(self, allow_squash_merge: bool) -> Self
pub fn allow_squash_merge(self, allow_squash_merge: bool) -> Self
Set a new allow_squash_merge
.
Sourcepub fn allow_merge_commit(self, allow_merge_commit: bool) -> Self
pub fn allow_merge_commit(self, allow_merge_commit: bool) -> Self
Set a new allow_merge_commit
.
Sourcepub fn allow_rebase_merge(self, allow_rebase_merge: bool) -> Self
pub fn allow_rebase_merge(self, allow_rebase_merge: bool) -> Self
Set a new allow_rebase_merge
.
Sourcepub fn allow_auto_merge(self, allow_auto_merge: bool) -> Self
pub fn allow_auto_merge(self, allow_auto_merge: bool) -> Self
Set a new allow_auto_merge
.
Sourcepub fn delete_branch_on_merge(self, delete_branch_on_merge: bool) -> Self
pub fn delete_branch_on_merge(self, delete_branch_on_merge: bool) -> Self
Set a new delete_branch_on_merge
.
Sourcepub fn allow_update_branch(self, allow_update_branch: bool) -> Self
pub fn allow_update_branch(self, allow_update_branch: bool) -> Self
Set a new allow_update_branch
.
Sourcepub fn use_squash_pr_title_as_default(
self,
use_squash_pr_title_as_default: bool,
) -> Self
pub fn use_squash_pr_title_as_default( self, use_squash_pr_title_as_default: bool, ) -> Self
Set a new use_squash_pr_title_as_default
.
Sourcepub fn squash_merge_commit_title(
self,
squash_merge_commit_title: &'a str,
) -> Self
pub fn squash_merge_commit_title( self, squash_merge_commit_title: &'a str, ) -> Self
Set a new squash_merge_commit_title
.
Sourcepub fn squash_merge_commit_message(
self,
squash_merge_commit_message: &'a str,
) -> Self
pub fn squash_merge_commit_message( self, squash_merge_commit_message: &'a str, ) -> Self
Set a new squash_merge_commit_message
.
Sourcepub fn merge_commit_title(self, merge_commit_title: &'a str) -> Self
pub fn merge_commit_title(self, merge_commit_title: &'a str) -> Self
Set a new merge_commit_title
.
Sourcepub fn merge_commit_message(self, merge_commit_message: &'a str) -> Self
pub fn merge_commit_message(self, merge_commit_message: &'a str) -> Self
Set a new merge_commit_message
.
Sourcepub fn allow_forking(self, allow_forking: bool) -> Self
pub fn allow_forking(self, allow_forking: bool) -> Self
Set a new allow_forking
.
Sourcepub fn web_commit_signoff_required(
self,
web_commit_signoff_required: bool,
) -> Self
pub fn web_commit_signoff_required( self, web_commit_signoff_required: bool, ) -> Self
Set a new web_commit_signoff_required
.
Trait Implementations§
Source§impl<'a> Api for UpdateARepository<'a>
impl<'a> Api for UpdateARepository<'a>
Source§impl<'a> ApiExt for UpdateARepository<'a>
impl<'a> ApiExt for UpdateARepository<'a>
Source§impl<'a> Clone for UpdateARepository<'a>
impl<'a> Clone for UpdateARepository<'a>
Source§fn clone(&self) -> UpdateARepository<'a>
fn clone(&self) -> UpdateARepository<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for UpdateARepository<'a>
impl<'a> Debug for UpdateARepository<'a>
Source§impl<'a> PartialEq for UpdateARepository<'a>
impl<'a> PartialEq for UpdateARepository<'a>
impl<'a> Eq for UpdateARepository<'a>
impl<'a> StructuralPartialEq for UpdateARepository<'a>
Auto Trait Implementations§
impl<'a> Freeze for UpdateARepository<'a>
impl<'a> RefUnwindSafe for UpdateARepository<'a>
impl<'a> Send for UpdateARepository<'a>
impl<'a> Sync for UpdateARepository<'a>
impl<'a> Unpin for UpdateARepository<'a>
impl<'a> UnwindSafe for UpdateARepository<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more