pub struct RegionDebugInfo {
pub selector: String,
pub selector_kind: String,
pub evaluation_scope: String,
pub match_count: usize,
pub raw_match_html: Option<String>,
pub raw_extracted_value: Option<String>,
pub transformation_output_chain: Vec<TransformationDebugStep>,
pub final_value: Option<String>,
pub error: Option<String>,
}Fields§
§selector: String§selector_kind: String§evaluation_scope: String§match_count: usize§raw_match_html: Option<String>§raw_extracted_value: Option<String>§transformation_output_chain: Vec<TransformationDebugStep>§final_value: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for RegionDebugInfo
impl Clone for RegionDebugInfo
Source§fn clone(&self) -> RegionDebugInfo
fn clone(&self) -> RegionDebugInfo
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 moreSource§impl Debug for RegionDebugInfo
impl Debug for RegionDebugInfo
Auto Trait Implementations§
impl Freeze for RegionDebugInfo
impl RefUnwindSafe for RegionDebugInfo
impl Send for RegionDebugInfo
impl Sync for RegionDebugInfo
impl Unpin for RegionDebugInfo
impl UnsafeUnpin for RegionDebugInfo
impl UnwindSafe for RegionDebugInfo
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