pub enum TableCellCheck {
Matched,
Mismatch,
NotFound,
NotChecked,
CapabilityLimited,
}Expand description
Table-cell axis result.
Variants§
Matched
Table cell matched.
Mismatch
Located table cell mismatched.
NotFound
Table cell was not found.
NotChecked
Not checked.
CapabilityLimited
Source lacks table capability.
Trait Implementations§
Source§impl Clone for TableCellCheck
impl Clone for TableCellCheck
Source§fn clone(&self) -> TableCellCheck
fn clone(&self) -> TableCellCheck
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 moreimpl Copy for TableCellCheck
Source§impl Debug for TableCellCheck
impl Debug for TableCellCheck
Source§impl<'de> Deserialize<'de> for TableCellCheck
impl<'de> Deserialize<'de> for TableCellCheck
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 TableCellCheck
Source§impl Hash for TableCellCheck
impl Hash for TableCellCheck
Source§impl PartialEq for TableCellCheck
impl PartialEq for TableCellCheck
Source§fn eq(&self, other: &TableCellCheck) -> bool
fn eq(&self, other: &TableCellCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TableCellCheck
impl Serialize for TableCellCheck
impl StructuralPartialEq for TableCellCheck
Auto Trait Implementations§
impl Freeze for TableCellCheck
impl RefUnwindSafe for TableCellCheck
impl Send for TableCellCheck
impl Sync for TableCellCheck
impl Unpin for TableCellCheck
impl UnsafeUnpin for TableCellCheck
impl UnwindSafe for TableCellCheck
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