pub struct TestRepositoryTriggersOutput {
pub failed_executions: Option<Vec<RepositoryTriggerExecutionFailure>>,
pub successful_executions: Option<Vec<String>>,
}Expand description
Represents the output of a test repository triggers operation.
Fields§
§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.
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.
Trait Implementations§
Source§impl Clone for TestRepositoryTriggersOutput
impl Clone for TestRepositoryTriggersOutput
Source§fn clone(&self) -> TestRepositoryTriggersOutput
fn clone(&self) -> TestRepositoryTriggersOutput
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 TestRepositoryTriggersOutput
impl Debug for TestRepositoryTriggersOutput
Source§impl Default for TestRepositoryTriggersOutput
impl Default for TestRepositoryTriggersOutput
Source§fn default() -> TestRepositoryTriggersOutput
fn default() -> TestRepositoryTriggersOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestRepositoryTriggersOutput
impl<'de> Deserialize<'de> for TestRepositoryTriggersOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TestRepositoryTriggersOutput
impl PartialEq for TestRepositoryTriggersOutput
Source§fn eq(&self, other: &TestRepositoryTriggersOutput) -> bool
fn eq(&self, other: &TestRepositoryTriggersOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TestRepositoryTriggersOutput
Auto Trait Implementations§
impl Freeze for TestRepositoryTriggersOutput
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