#[non_exhaustive]pub struct RunContinuousTestMetadata {
pub errors: Vec<TestError>,
/* private fields */
}Available on crate feature
environments only.Expand description
Metadata returned for the Environments.RunContinuousTest long running 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.errors: Vec<TestError>The test errors.
Implementations§
Source§impl RunContinuousTestMetadata
impl RunContinuousTestMetadata
Sourcepub fn set_errors<T, V>(self, v: T) -> Self
pub fn set_errors<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for RunContinuousTestMetadata
impl Clone for RunContinuousTestMetadata
Source§fn clone(&self) -> RunContinuousTestMetadata
fn clone(&self) -> RunContinuousTestMetadata
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunContinuousTestMetadata
impl Debug for RunContinuousTestMetadata
Source§impl Default for RunContinuousTestMetadata
impl Default for RunContinuousTestMetadata
Source§fn default() -> RunContinuousTestMetadata
fn default() -> RunContinuousTestMetadata
Returns the “default value” for a type. Read more
Source§impl Message for RunContinuousTestMetadata
impl Message for RunContinuousTestMetadata
Source§impl PartialEq for RunContinuousTestMetadata
impl PartialEq for RunContinuousTestMetadata
Source§fn eq(&self, other: &RunContinuousTestMetadata) -> bool
fn eq(&self, other: &RunContinuousTestMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RunContinuousTestMetadata
Auto Trait Implementations§
impl Freeze for RunContinuousTestMetadata
impl RefUnwindSafe for RunContinuousTestMetadata
impl Send for RunContinuousTestMetadata
impl Sync for RunContinuousTestMetadata
impl Unpin for RunContinuousTestMetadata
impl UnsafeUnpin for RunContinuousTestMetadata
impl UnwindSafe for RunContinuousTestMetadata
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