pub struct ListRepositoriesForApprovalRuleTemplateInput {
pub approval_rule_template_name: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§approval_rule_template_name: StringThe name of the approval rule template for which you want to list repositories that are associated with that template.
max_results: Option<i64>A non-zero, non-negative integer used to limit the number of returned results.
next_token: Option<String>An enumeration token that, when provided in a request, returns the next batch of the results.
Trait Implementations§
Source§impl Clone for ListRepositoriesForApprovalRuleTemplateInput
impl Clone for ListRepositoriesForApprovalRuleTemplateInput
Source§fn clone(&self) -> ListRepositoriesForApprovalRuleTemplateInput
fn clone(&self) -> ListRepositoriesForApprovalRuleTemplateInput
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 Default for ListRepositoriesForApprovalRuleTemplateInput
impl Default for ListRepositoriesForApprovalRuleTemplateInput
Source§fn default() -> ListRepositoriesForApprovalRuleTemplateInput
fn default() -> ListRepositoriesForApprovalRuleTemplateInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListRepositoriesForApprovalRuleTemplateInput
impl PartialEq for ListRepositoriesForApprovalRuleTemplateInput
Source§fn eq(&self, other: &ListRepositoriesForApprovalRuleTemplateInput) -> bool
fn eq(&self, other: &ListRepositoriesForApprovalRuleTemplateInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListRepositoriesForApprovalRuleTemplateInput
Auto Trait Implementations§
impl Freeze for ListRepositoriesForApprovalRuleTemplateInput
impl RefUnwindSafe for ListRepositoriesForApprovalRuleTemplateInput
impl Send for ListRepositoriesForApprovalRuleTemplateInput
impl Sync for ListRepositoriesForApprovalRuleTemplateInput
impl Unpin for ListRepositoriesForApprovalRuleTemplateInput
impl UnwindSafe for ListRepositoriesForApprovalRuleTemplateInput
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