pub unsafe trait HasRootMut: KnowsVisitor {
// Required method
unsafe fn root_mut(&mut self) -> Self::VisitorMut;
}
Expand description
A trait for types that have a root mutably. By design, accessing a Visitor parent is unsafe.
Required Methods§
Sourceunsafe fn root_mut(&mut self) -> Self::VisitorMut
unsafe fn root_mut(&mut self) -> Self::VisitorMut
Gets the root of the object.