pub trait WidgetInfoExt {
// Required methods
fn anchor(&self) -> Option<&Txt>;
fn is_markdown(&self) -> bool;
fn find_anchor(&self, anchor: &str) -> Option<WidgetInfo>;
}Expand description
Markdown extension methods for widget info.
Required Methods§
Sourcefn is_markdown(&self) -> bool
fn is_markdown(&self) -> bool
If this widget is a Markdown!.
Sourcefn find_anchor(&self, anchor: &str) -> Option<WidgetInfo>
fn find_anchor(&self, anchor: &str) -> Option<WidgetInfo>
Find descendant tagged by the given anchor.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".