1 2 3 4 5 6 7 8 9
use crate::core::node::WidgetNode; use crate::style::Style; #[derive(Clone, Debug, Default)] pub struct CenterPinNode { pub style: Style, } impl WidgetNode for CenterPinNode {}