pub enum TextCheck {
Matched,
Mismatch,
NotFound,
NotChecked,
CapabilityLimited,
}Expand description
Text axis result.
Variants§
Matched
Text matched.
Mismatch
Located text mismatched.
NotFound
Text target was not found.
NotChecked
Not checked.
CapabilityLimited
Source lacks required text capability.
Trait Implementations§
impl Copy for TextCheck
Source§impl<'de> Deserialize<'de> for TextCheck
impl<'de> Deserialize<'de> for TextCheck
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
impl Eq for TextCheck
impl StructuralPartialEq for TextCheck
Auto Trait Implementations§
impl Freeze for TextCheck
impl RefUnwindSafe for TextCheck
impl Send for TextCheck
impl Sync for TextCheck
impl Unpin for TextCheck
impl UnsafeUnpin for TextCheck
impl UnwindSafe for TextCheck
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