pub trait TreeRoot<T>:
Clone
+ Send
+ Syncwhere
T: Types,{ }
Expand description
A marker trait to distinguish between owned and borrowed
trees. You don’t need to implement it yourself,
use existing OwnedRoot
or RefRoot
.
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.