pub struct ParseResult {
pub metrics: HashMap<String, HashMap<String, ValueSource>>,
pub tests: HashMap<String, HashMap<String, Trial>>,
/* private fields */
}Fields§
§metrics: HashMap<String, HashMap<String, ValueSource>>§tests: HashMap<String, HashMap<String, Trial>>Implementations§
Source§impl ParseResult
impl ParseResult
pub fn new( configs: &HashMap<String, String>, action_tag_directive: &ActionTagDirective, ) -> Result<ParseResult, Error>
pub fn all_selectors(&self) -> Vec<String>
pub fn validate(&self) -> Result<(), Error>
pub fn reset_state(&self)
Auto Trait Implementations§
impl Freeze for ParseResult
impl !RefUnwindSafe for ParseResult
impl Send for ParseResult
impl !Sync for ParseResult
impl Unpin for ParseResult
impl UnwindSafe for ParseResult
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more