pub struct AxTypeResult {
pub node_id: Option<String>,
pub matched_count: usize,
pub applied_via: String,
pub text_length: usize,
pub submitted: bool,
pub used_keyboard_fallback: bool,
pub selector_explain: Option<AxSelectorExplain>,
pub gates: Option<AxGateResult>,
pub postconditions: Option<AxPostconditionResult>,
}Fields§
§node_id: Option<String>§matched_count: usize§applied_via: String§text_length: usize§submitted: bool§used_keyboard_fallback: bool§selector_explain: Option<AxSelectorExplain>§gates: Option<AxGateResult>§postconditions: Option<AxPostconditionResult>Trait Implementations§
Source§impl Clone for AxTypeResult
impl Clone for AxTypeResult
Source§fn clone(&self) -> AxTypeResult
fn clone(&self) -> AxTypeResult
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 AxTypeResult
impl Debug for AxTypeResult
Source§impl Default for AxTypeResult
impl Default for AxTypeResult
Source§fn default() -> AxTypeResult
fn default() -> AxTypeResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AxTypeResult
impl<'de> Deserialize<'de> for AxTypeResult
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 AxTypeResult
impl PartialEq for AxTypeResult
Source§impl Serialize for AxTypeResult
impl Serialize for AxTypeResult
impl StructuralPartialEq for AxTypeResult
Auto Trait Implementations§
impl Freeze for AxTypeResult
impl RefUnwindSafe for AxTypeResult
impl Send for AxTypeResult
impl Sync for AxTypeResult
impl Unpin for AxTypeResult
impl UnsafeUnpin for AxTypeResult
impl UnwindSafe for AxTypeResult
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