pub trait Grant<T> {
// Required method
fn grant(&mut self, t: &T) -> EvalResult<()>;
}
Expand description
Grant statements depending on context
Required Methods§
Sourcefn grant(&mut self, t: &T) -> EvalResult<()>
fn grant(&mut self, t: &T) -> EvalResult<()>
Check if given statement T
is granted within the current context