pub trait DamlVisitableElement<'a> {
// Required method
fn accept(&'a self, visitor: &'a mut impl DamlElementVisitor);
}Expand description
A Daml element that can be visited by a DamlElementVisitor.
See DamlElementVisitor.
Required Methods§
fn accept(&'a self, visitor: &'a mut impl DamlElementVisitor)
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.