pub trait BindMapExt<A: ActionExt> {
// Required methods
fn default_binds() -> Self;
fn check_cycles(&self) -> Result<(), String>;
fn dfs_semantic(&self, _: &str, _: &mut Vec<String>) -> Result<(), String>;
}Required Methods§
fn default_binds() -> Self
Sourcefn check_cycles(&self) -> Result<(), String>
fn check_cycles(&self) -> Result<(), String>
Check for infinite loops in semantic actions.
fn dfs_semantic(&self, _: &str, _: &mut Vec<String>) -> Result<(), String>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.