pub trait ComposeNode {
    fn cast_mut<T>(&mut self) -> Option<&mut T>
    where
        T: 'static + Unpin + Debug
; }

Required methods

Implementors