#[non_exhaustive]pub struct ValidatePipelineOutput {
pub is_valid: Option<bool>,
pub errors: Option<Vec<ValidationMessage>>,
/* private fields */
}
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.is_valid: Option<bool>
A boolean indicating whether or not the pipeline configuration is valid.
errors: Option<Vec<ValidationMessage>>
A list of errors if the configuration is invalid.
Implementations§
source§impl ValidatePipelineOutput
impl ValidatePipelineOutput
sourcepub fn builder() -> ValidatePipelineOutputBuilder
pub fn builder() -> ValidatePipelineOutputBuilder
Creates a new builder-style object to manufacture ValidatePipelineOutput
.
Trait Implementations§
source§impl Clone for ValidatePipelineOutput
impl Clone for ValidatePipelineOutput
source§fn clone(&self) -> ValidatePipelineOutput
fn clone(&self) -> ValidatePipelineOutput
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 ValidatePipelineOutput
impl Debug for ValidatePipelineOutput
source§impl PartialEq for ValidatePipelineOutput
impl PartialEq for ValidatePipelineOutput
source§fn eq(&self, other: &ValidatePipelineOutput) -> bool
fn eq(&self, other: &ValidatePipelineOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ValidatePipelineOutput
impl RequestId for ValidatePipelineOutput
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 ValidatePipelineOutput
Auto Trait Implementations§
impl RefUnwindSafe for ValidatePipelineOutput
impl Send for ValidatePipelineOutput
impl Sync for ValidatePipelineOutput
impl Unpin for ValidatePipelineOutput
impl UnwindSafe for ValidatePipelineOutput
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