pub struct PutRepositoryTriggersInput {
pub repository_name: String,
pub triggers: Vec<RepositoryTrigger>,
}Expand description
Represents the input of a put repository triggers operation.
Fields§
§repository_name: StringThe name of the repository where you want to create or update the trigger.
triggers: Vec<RepositoryTrigger>The JSON block of configuration information for each trigger.
Trait Implementations§
Source§impl Clone for PutRepositoryTriggersInput
impl Clone for PutRepositoryTriggersInput
Source§fn clone(&self) -> PutRepositoryTriggersInput
fn clone(&self) -> PutRepositoryTriggersInput
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 Debug for PutRepositoryTriggersInput
impl Debug for PutRepositoryTriggersInput
Source§impl Default for PutRepositoryTriggersInput
impl Default for PutRepositoryTriggersInput
Source§fn default() -> PutRepositoryTriggersInput
fn default() -> PutRepositoryTriggersInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for PutRepositoryTriggersInput
Auto Trait Implementations§
impl Freeze for PutRepositoryTriggersInput
impl RefUnwindSafe for PutRepositoryTriggersInput
impl Send for PutRepositoryTriggersInput
impl Sync for PutRepositoryTriggersInput
impl Unpin for PutRepositoryTriggersInput
impl UnwindSafe for PutRepositoryTriggersInput
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