pub fn as_node_mut<T: Node + 'static>(node: &mut dyn Node) -> Option<&mut T>
Get a mutable reference to a node of a specific type.
node
A reference to the node of the specified type if the node is of the specified type, otherwise None.
None