Struct aws_sdk_codecommit::operation::test_repository_triggers::TestRepositoryTriggersOutput
source · #[non_exhaustive]pub struct TestRepositoryTriggersOutput {
pub successful_executions: Option<Vec<String>>,
pub failed_executions: Option<Vec<RepositoryTriggerExecutionFailure>>,
/* private fields */
}Expand description
Represents the output of a test repository triggers operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.successful_executions: Option<Vec<String>>The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
failed_executions: Option<Vec<RepositoryTriggerExecutionFailure>>The list of triggers that were not tested. This list provides the names of the triggers that could not be tested, separated by commas.
Implementations§
source§impl TestRepositoryTriggersOutput
impl TestRepositoryTriggersOutput
sourcepub fn successful_executions(&self) -> Option<&[String]>
pub fn successful_executions(&self) -> Option<&[String]>
The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
sourcepub fn failed_executions(&self) -> Option<&[RepositoryTriggerExecutionFailure]>
pub fn failed_executions(&self) -> Option<&[RepositoryTriggerExecutionFailure]>
The list of triggers that were not tested. This list provides the names of the triggers that could not be tested, separated by commas.
source§impl TestRepositoryTriggersOutput
impl TestRepositoryTriggersOutput
sourcepub fn builder() -> TestRepositoryTriggersOutputBuilder
pub fn builder() -> TestRepositoryTriggersOutputBuilder
Creates a new builder-style object to manufacture TestRepositoryTriggersOutput.
Trait Implementations§
source§impl Clone for TestRepositoryTriggersOutput
impl Clone for TestRepositoryTriggersOutput
source§fn clone(&self) -> TestRepositoryTriggersOutput
fn clone(&self) -> TestRepositoryTriggersOutput
Returns a copy 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 TestRepositoryTriggersOutput
impl Debug for TestRepositoryTriggersOutput
source§impl PartialEq<TestRepositoryTriggersOutput> for TestRepositoryTriggersOutput
impl PartialEq<TestRepositoryTriggersOutput> for TestRepositoryTriggersOutput
source§fn eq(&self, other: &TestRepositoryTriggersOutput) -> bool
fn eq(&self, other: &TestRepositoryTriggersOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for TestRepositoryTriggersOutput
impl RequestId for TestRepositoryTriggersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for TestRepositoryTriggersOutput
Auto Trait Implementations§
impl RefUnwindSafe for TestRepositoryTriggersOutput
impl Send for TestRepositoryTriggersOutput
impl Sync for TestRepositoryTriggersOutput
impl Unpin for TestRepositoryTriggersOutput
impl UnwindSafe for TestRepositoryTriggersOutput
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