pub struct BlueprintTestSuite {
pub blueprint: String,
pub overlay: String,
pub expectations: BlueprintExpectations,
}Expand description
A test suite for validating a single blueprint.
Fields§
§blueprint: StringBlueprint selector (e.g. "fsa", "ia", or a file path).
overlay: StringOverlay selector (e.g. "default", "thorough", or a file path).
expectations: BlueprintExpectationsExpected metric thresholds.
Trait Implementations§
Source§impl Clone for BlueprintTestSuite
impl Clone for BlueprintTestSuite
Source§fn clone(&self) -> BlueprintTestSuite
fn clone(&self) -> BlueprintTestSuite
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 BlueprintTestSuite
impl Debug for BlueprintTestSuite
Source§impl<'de> Deserialize<'de> for BlueprintTestSuite
impl<'de> Deserialize<'de> for BlueprintTestSuite
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
Auto Trait Implementations§
impl Freeze for BlueprintTestSuite
impl RefUnwindSafe for BlueprintTestSuite
impl Send for BlueprintTestSuite
impl Sync for BlueprintTestSuite
impl Unpin for BlueprintTestSuite
impl UnsafeUnpin for BlueprintTestSuite
impl UnwindSafe for BlueprintTestSuite
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