pub enum VerificationType {
UrlContains,
ElementExists,
TextContains,
JsCondition,
}Expand description
Types of verification checks.
Variants§
UrlContains
Check if URL contains a pattern.
ElementExists
Check if an element exists.
TextContains
Check if page text contains a string.
JsCondition
Evaluate a JavaScript condition.
Trait Implementations§
Source§impl Clone for VerificationType
impl Clone for VerificationType
Source§fn clone(&self) -> VerificationType
fn clone(&self) -> VerificationType
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 VerificationType
impl Debug for VerificationType
Source§impl<'de> Deserialize<'de> for VerificationType
impl<'de> Deserialize<'de> for VerificationType
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 VerificationType
impl PartialEq for VerificationType
Source§impl Serialize for VerificationType
impl Serialize for VerificationType
impl Copy for VerificationType
impl Eq for VerificationType
impl StructuralPartialEq for VerificationType
Auto Trait Implementations§
impl Freeze for VerificationType
impl RefUnwindSafe for VerificationType
impl Send for VerificationType
impl Sync for VerificationType
impl Unpin for VerificationType
impl UnwindSafe for VerificationType
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