Skip to main content

BindMapExt

Trait BindMapExt 

Source
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§

Source

fn default_binds() -> Self

Source

fn check_cycles(&self) -> Result<(), String>

Check for infinite loops in semantic actions.

Source

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.

Implementors§